File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,15 +73,15 @@ Where `PREDEFINED_CLASS` is one of:
73
73
### Variable substitution
74
74
``` ocaml
75
75
let%mikmatch re1 = {| "hello" |}
76
- let%mikmatch re2 = {| re1 "world" |}
76
+ let%mikmatch re2 = {| re1 ' ' "world" |}
77
77
78
78
let do_something = function%mikmatch
79
79
| {|/ ... (re2) ... /|} -> ...
80
80
| _ -> ...
81
81
82
82
(* will expand to *)
83
83
let do_something = function%mikmatch
84
- | {|/ ... ("hello" "world") ... /|} -> ...
84
+ | {|/ ... ("hello" ' ' "world") ... /|} -> ...
85
85
| _ -> ...
86
86
```
87
87
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ let%mikmatch var = {| some regex |}
26
26
27
27
### ` %mikmatch `
28
28
29
- Full [ %mikmatch guide] ( ./MIK .md ) .
29
+ Full [ %mikmatch guide] ( ./MIKMATCH .md ) .
30
30
31
31
#### Quick Links
32
32
- [ Variable capture] ( ./MIK.md#variable-capture )
You can’t perform that action at this time.
0 commit comments