diff --git a/compiler/snowman.tt b/compiler/snowman.tt index cd9c14b..2ccb7ad 100644 --- a/compiler/snowman.tt +++ b/compiler/snowman.tt @@ -803,14 +803,14 @@ It is these numeric values of c and l which are acce
[% highlight_inline("setmark X") %]
sets  X  to the current value of c, where  X  is an integer variable. - It's equivalent to: [% highlight_inline("$X = cursor") %] + It's equivalent to: [% highlight_inline('$X = cursor') %]
[% highlight_inline("tomark AE") %]
moves c forward to the position given by AE,
[% highlight_inline("atmark AE") %]
tests if c is at position AE (t or f signal). - It's equivalent to: [% highlight_inline("$(cursor == AE)") %] + It's equivalent to: [% highlight_inline('$(cursor == AE)') %]