summaryrefslogtreecommitdiff
path: root/docs/src/reference
diff options
context:
space:
mode:
authorSebastian Zivota <loewenheim@users.noreply.github.com>2023-03-24 09:13:34 +0100
committerGitHub <noreply@github.com>2023-03-24 09:13:34 +0100
commitc9a945f9a0f7841ebccbe20c52ccb60457548079 (patch)
treebf11bdcd05a924b2adb1a7117bef20b16b24873d /docs/src/reference
parent23de492eea6c5595ff92505dcfc31702c5469ecb (diff)
Fix descriptions of some types (#206)
Diffstat (limited to 'docs/src/reference')
-rw-r--r--docs/src/reference/types.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/reference/types.md b/docs/src/reference/types.md
index 3a768d27..31b41598 100644
--- a/docs/src/reference/types.md
+++ b/docs/src/reference/types.md
@@ -1,5 +1,5 @@
# None
-A type that indicates the absence of any other value.
+A value that indicates the absence of any other value.
The none type has exactly one value: `{none}`.
@@ -14,7 +14,7 @@ Not visible: #none
```
# Auto
-A type that indicates a smart default.
+A value that indicates a smart default.
The auto type has exactly one value: `{auto}`.
@@ -24,7 +24,7 @@ Setting it to `{auto}` lets Typst automatically determine the direction from the
[text language]($func/text.lang).
# Boolean
-A value with two states.
+Either `{true}` or `{false}`.
The boolean type has two values: `{true}` and `{false}`. It denotes whether
something is active or enabled.
@@ -379,7 +379,7 @@ the resulting parts.
- returns: array
# Content
-Representation of document content.
+A piece of document content.
This type is at the heart of Typst. All markup you write and most
[functions]($type/function) you call produce content values. You can create a