Skip to content

Commit 2390b09

Browse files
nicomenrjbs
authored andcommitted
Fix lists again with proper escaping
1 parent 897ccc1 commit 2390b09

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

rfcs/rfc0018.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ There are a few alternatives on how to disable this feature and changing the mea
3434

3535
### String interpolation of identifiers:
3636

37-
* 1. Treat `'` as text — `"$isn't" eq "${isn}'t"` and `"error: '$msg'" eq "error: '${msg}'"`
37+
* 1\. Treat `'` as text — `"$isn't" eq "${isn}'t"` and `"error: '$msg'" eq "error: '${msg}'"`
3838
* 1w. same with warning
3939

40-
* 2. Treat `'` as part of identifier — `"$isn't" eq $isn't ne $isn::t` and `"error: '$msg'" ne "error: '${msg}'"`
40+
* 2\. Treat `'` as part of identifier — `"$isn't" eq $isn't ne $isn::t` and `"error: '$msg'" ne "error: '${msg}'"`
4141
* 2w. same with warning
4242

43-
* 3. Syntax error — existing code supports warning, could die instead, see `toke.c` and look for `tick_warn`
43+
* 3\. Syntax error — existing code supports warning, could die instead, see `toke.c` and look for `tick_warn`
4444

45-
* 4. Current behaviour with warning — `"$isn't" eq "${isn::t}"` (warning) and `"error: '$msg'" eq "error: '${msg}'"` (no warning)
45+
* 4\. Current behaviour with warning — `"$isn't" eq "${isn::t}"` (warning) and `"error: '$msg'" eq "error: '${msg}'"` (no warning)
4646

4747
### Identifiers elsewhere (variables, function declarations etc.)
4848

49-
* a. Treat `'` as part of identifier — `isn't()` would still work, but would need to be declared as `sub isn't { }` instead of `package isn; sub t {}`.
49+
* a\. Treat `'` as part of identifier — `isn't()` would still work, but would need to be declared as `sub isn't { }` instead of `package isn; sub t {}`.
5050

51-
* b. Syntax error
51+
* b\. Syntax error
5252

53-
* c. Current behaviour with warning
53+
* c\. Current behaviour with warning
5454

5555
### Discussion
5656

0 commit comments

Comments
 (0)