Skip to content

Commit 8158e04

Browse files
committed
update MIKMATCH.md
1 parent a7c5d74 commit 8158e04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

MIK.md renamed to MIKMATCH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ Where `PREDEFINED_CLASS` is one of:
7373
### Variable substitution
7474
```ocaml
7575
let%mikmatch re1 = {| "hello" |}
76-
let%mikmatch re2 = {| re1 "world" |}
76+
let%mikmatch re2 = {| re1 ' ' "world" |}
7777
7878
let do_something = function%mikmatch
7979
| {|/ ... (re2) ... /|} -> ...
8080
| _ -> ...
8181
8282
(* will expand to *)
8383
let do_something = function%mikmatch
84-
| {|/ ... ("hello" "world") ... /|} -> ...
84+
| {|/ ... ("hello" ' ' "world") ... /|} -> ...
8585
| _ -> ...
8686
```
8787

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let%mikmatch var = {| some regex |}
2626

2727
### `%mikmatch`
2828

29-
Full [%mikmatch guide](./MIK.md).
29+
Full [%mikmatch guide](./MIKMATCH.md).
3030

3131
#### Quick Links
3232
- [Variable capture](./MIK.md#variable-capture)

0 commit comments

Comments
 (0)