From e8ce894ee7317654a0de1c822d14b3e169dde4d9 Mon Sep 17 00:00:00 2001 From: Florian Bohlken Date: Thu, 26 Jun 2025 17:24:55 +0200 Subject: [PATCH] Improve sentence in guide for LaTeX users (#6511) --- docs/guides/guide-for-latex-users.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/guide-for-latex-users.md b/docs/guides/guide-for-latex-users.md index fffa6c521..93fa296fc 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