Fixed typo in source code.

This commit is contained in:
orca 2024-01-17 06:37:13 +01:00
parent 61f71ce629
commit 0485c8226e
Signed by: orca
GPG Key ID: 6923B8DFED96A68A
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
#let proposition-text = "Propostition"
#let lemma-text = "Lemme"
#let theorem-text = "Théorème"
#let corrolary-text = "Théorème"
#let corollary-text = "Corollaire"
#let definition-text = "Définition"
#let remark-text = "Remarque"
#let example-text = "Exemple"
@ -68,7 +68,7 @@
#let proposition(body, name: "") = math-block(body, name: name, id: proposition-text)
#let lemma(body, name: "") = math-block(body, name: name, id: lemma-text)
#let theorem(body, name: "") = math-block(body, name: name, id: theorem-text)
#let corrolary(body, name: "") = math-block(body, name: name, id: corrolary-text)
#let corollary(body, name: "") = math-block(body, name: name, id: corollary-text)
#let definition(body, name: "") = math-block(body, name: name, id: definition-text, emphasis: "italics", decoration: "outline")
#let remark(body, name: "") = math-block(body + v(0.5em), name: name, id: remark-text, decoration: "none")
#let example(body, name: "") = math-block(body + v(0.5em), name: name, id: example-text, decoration: "none")