Skip to content

Commit 70ce25d

Browse files
authored
Merge pull request #2 from raphael-proust/patch-2
Fix indentation in code example in README.md
2 parents 20585df + b0e65a1 commit 70ce25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ module BatchedCounter = struct
127127
Array.iter (function
128128
| Mk (Incr, comp) -> incr t; Computation.return comp ()
129129
| Mk (Decr, comp) -> decr t; Computation.return comp ()
130-
| Mk (Get, comp) -> Computation.return comp !t)
130+
| Mk (Get, comp) -> Computation.return comp !t)
131131
end
132132
```
133133

0 commit comments

Comments
 (0)