From 1264b5ddbb15bb3777583e3db38114340d5057e5 Mon Sep 17 00:00:00 2001 From: Rodin Aarssen Date: Mon, 17 Jun 2024 12:47:53 +0200 Subject: [PATCH] Fixed end-of-line/file disambiguation character --- courses/Rascal/Declarations/SyntaxDefinition/Symbol/Symbol.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courses/Rascal/Declarations/SyntaxDefinition/Symbol/Symbol.md b/courses/Rascal/Declarations/SyntaxDefinition/Symbol/Symbol.md index e0464138f..be13c2ed4 100644 --- a/courses/Rascal/Declarations/SyntaxDefinition/Symbol/Symbol.md +++ b/courses/Rascal/Declarations/SyntaxDefinition/Symbol/Symbol.md @@ -90,7 +90,7 @@ Inline conditions (((Disambiguation))s) can be added to symbols to constrain the | Disambiguation | Description | | --- | --- | -| `Symbol _` | _Symbol_ ends at end of line or end of file | +| `Symbol $` | _Symbol_ ends at end of line or end of file | | `^Symbol` | _Symbol_ starts at begin of line | | `Symbol @ ColumnIndex` | _Symbol_ starts at certain column index. | | `Symbol~1~ >> Symbol~2~` | _Symbol~1~_ must be (directly) followed by _Symbol~2~_ |