diff options
Diffstat (limited to 'docs/wiki_src/introduction/syntax.md')
-rw-r--r-- | docs/wiki_src/introduction/syntax.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/wiki_src/introduction/syntax.md b/docs/wiki_src/introduction/syntax.md index 4dbc784..e14f8c6 100644 --- a/docs/wiki_src/introduction/syntax.md +++ b/docs/wiki_src/introduction/syntax.md @@ -138,9 +138,9 @@ structures](../coding/data-structures.md). - *Numbers*: `(SXB)`{.bruijn} where `S` is `+`/`-`, `X` is a number and `B` is the *base* of the encoded number (or `t` by default) - - `u` for unary base (postive, Church): `(+42u)` - - `b` for binary base (positive): `(+42b)` - - `t` for balanced ternary (positive/negative): `(-42t)` + - `u` for unary base (postive, Church): `(+42u)`{.bruijn} + - `b` for binary base (positive): `(+42b)`{.bruijn} + - `t` for balanced ternary (positive/negative): `(-42t)`{.bruijn} - *Characters*: `'C'`{.bruijn} where `C` is any ASCII character - *Strings*: `"X1..XN"`{.bruijn} where `X1...XN` are any ASCII characters |