summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bohlken <flibbo@gmail.com>2025-06-26 17:24:55 +0200
committerGitHub <noreply@github.com>2025-06-26 15:24:55 +0000
commite8ce894ee7317654a0de1c822d14b3e169dde4d9 (patch)
tree9efff5a7963dad96ed2a47fd3067bad9e18cad2e
parent9311f6f08eca583b6214834148c94685f0161c21 (diff)
Improve sentence in guide for LaTeX users (#6511)
-rw-r--r--docs/guides/guide-for-latex-users.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guides/guide-for-latex-users.md b/docs/guides/guide-for-latex-users.md
index fffa6c52..93fa296f 100644
--- a/docs/guides/guide-for-latex-users.md
+++ b/docs/guides/guide-for-latex-users.md
@@ -256,8 +256,8 @@ In Typst, the same function can be used both to affect the appearance for the
remainder of the document, a block (or scope), or just its arguments. For
example, `[#text(weight: "bold")[bold text]]` will only embolden its argument,
while `[#set text(weight: "bold")]` will embolden any text until the end of the
-current block, or, if there is none, document. The effects of a function are
-immediately obvious based on whether it is used in a call or a
+current block, or the end of the document, if there is none. The effects of a
+function are immediately obvious based on whether it is used in a call or a
[set rule.]($styling/#set-rules)
```example