Skip to content

Commit d733902

Browse files
committed
Use non-breaking character to fix formatting in README repetition expression documentation
1 parent 1878e1c commit d733902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ Syntax Reference
158158
| `block⁠[e]` | Creates a scope block for subexpression *e* where all new symbols defined in *e* are local to it and all external symbols defined outside of the block are also available for reference within *e*. |
159159
| `local⁠[e]` | Creates a local scope block for subexpression *e* where all new symbols defined in *e* are local to it and there are no external symbol definitions available for reference. |
160160
| `local(S)⁠[e]` | Creates a local scope block for subexpression *e* where all new symbols defined in *e* are local to it and all external symbols defined outside of the block are also available for reference within *e*, except for the symbol named *S*. |
161-
| `repeat(N)[e]` | Matches exactly *N* occurences of expression *e*. |
162-
| `repeat(N,M)[e]` | Matches at least *N* and at most *M* occurences of expression *e*. |
161+
| `repeat(N)[e]` | Matches exactly *N* occurences of expression *e*. |
162+
| `repeat(N,M)[e]` | Matches at least *N* and at most *M* occurences of expression *e*. |
163163

164164
| Factory | Description |
165165
| --- | --- |

0 commit comments

Comments
 (0)