Skip to content

Commit 6758f27

Browse files
changelog indentation
1 parent 5872226 commit 6758f27

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

CHANGES.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -38,37 +38,37 @@ profile. This started with version 0.26.0.
3838
(#2664, #2666, #2671, @EmileTrotignon)
3939
For example :
4040
```ocaml
41-
(* before *)
42-
begin
43-
match a with
44-
| A -> a
45-
| B -> b
46-
end
47-
(* after *)
48-
begin match a with
41+
(* before *)
42+
begin
43+
match a with
4944
| A -> a
5045
| B -> b
46+
end
47+
(* after *)
48+
begin match a with
49+
| A -> a
50+
| B -> b
51+
end
52+
53+
(* before *)
54+
begin
55+
fun x ->
56+
some code
57+
end
58+
(* after *)
59+
begin fun x ->
60+
some code
61+
end
62+
63+
(* before *)
64+
lazy
65+
begin
66+
some code
5167
end
52-
53-
(* before *)
54-
begin
55-
fun x ->
56-
some code
57-
end
58-
(* after *)
59-
begin fun x ->
60-
some code
61-
end
62-
63-
(* before *)
64-
lazy
65-
begin
66-
some code
67-
end
68-
(* after *)
69-
lazy begin
70-
some code
71-
end
68+
(* after *)
69+
lazy begin
70+
some code
71+
end
7272
```
7373

7474
## 0.27.0

0 commit comments

Comments
 (0)