Skip to content

Commit de37f3b

Browse files
committed
Properly indent code block in change log
1 parent ed87c3a commit de37f3b

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

ruby/ql/lib/CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
### Major Analysis Improvements
44

5-
* Flow through `initialize` constructors is now taken into account. For example, in
6-
```rb
7-
class C
8-
def initialize(x)
9-
@field = x
5+
* Flow through `initialize` constructors is now taken into account. For example, in
6+
```rb
7+
class C
8+
def initialize(x)
9+
@field = x
10+
end
1011
end
11-
end
1212

13-
C.new(y)
14-
```
15-
there will be flow from `y` to the field `@field` on the constructed `C` object.
13+
C.new(y)
14+
```
15+
there will be flow from `y` to the field `@field` on the constructed `C` object.
1616

1717
### Minor Analysis Improvements
1818

ruby/ql/lib/change-notes/released/0.5.0.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
### Major Analysis Improvements
44

5-
* Flow through `initialize` constructors is now taken into account. For example, in
6-
```rb
7-
class C
8-
def initialize(x)
9-
@field = x
5+
* Flow through `initialize` constructors is now taken into account. For example, in
6+
```rb
7+
class C
8+
def initialize(x)
9+
@field = x
10+
end
1011
end
11-
end
1212

13-
C.new(y)
14-
```
15-
there will be flow from `y` to the field `@field` on the constructed `C` object.
13+
C.new(y)
14+
```
15+
there will be flow from `y` to the field `@field` on the constructed `C` object.
1616

1717
### Minor Analysis Improvements
1818

0 commit comments

Comments
 (0)