diff options
| -rw-r--r-- | parse.c | 2 | ||||
| -rw-r--r-- | test/text.tm | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2035,7 +2035,7 @@ PARSER(parse_doctest) { PARSER(parse_say) { const char *start = pos; - if (!match(&pos, "!!")) return NULL; + if (!match(&pos, "|")) return NULL; spaces(&pos); ast_list_t *chunks = NULL; diff --git a/test/text.tm b/test/text.tm index c665d588..27c8c08a 100644 --- a/test/text.tm +++ b/test/text.tm @@ -1,6 +1,6 @@ func main(): >> str := "Hello Amélie!" - !! Testing strings like {str} + | Testing strings like {str} >> str:upper() = "HELLO AMÉLIE!" |
