summaryrefslogtreecommitdiff
path: root/docs/src/reference/syntax.md
diff options
context:
space:
mode:
authorRafael Oliveira <56204853+RafDevX@users.noreply.github.com>2023-03-27 15:20:22 +0100
committerGitHub <noreply@github.com>2023-03-27 16:20:22 +0200
commit52905cf77f593c8bee0d96ce0a405bdf80323316 (patch)
treef23f8cad680bdd6561100921f0e7ca4073973664 /docs/src/reference/syntax.md
parentc5fb34123cad86294887defe9571cd773e9ace99 (diff)
Fix typos in docs (#315)
Diffstat (limited to 'docs/src/reference/syntax.md')
-rw-r--r--docs/src/reference/syntax.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/reference/syntax.md b/docs/src/reference/syntax.md
index b9063319..7a91b0a8 100644
--- a/docs/src/reference/syntax.md
+++ b/docs/src/reference/syntax.md
@@ -126,10 +126,10 @@ Our study design is as follows:
```
## Escape sequences { #escapes }
-Escape sequences are used to insert special characters that are otherwise have
-special meaning in Typst. To escape a character, precede it with a backslash. To
-insert any Unicode codepoint, you can write a hexadecimal escape sequence:
-`[\u{1f600}]`. The same kind of escape sequences also work in
+Escape sequences are used to insert special characters that are hard to type or
+otherwise have special meaning in Typst. To escape a character, precede it with
+a backslash. To insert any Unicode codepoint, you can write a hexadecimal
+escape sequence: `[\u{1f600}]`. The same kind of escape sequences also work in
[strings]($type/string).
```example