Properly indent code block in change log

This commit is contained in:
Jeroen Ketema
2023-01-05 18:38:33 +01:00
parent ed87c3a90a
commit de37f3b7d5
2 changed files with 18 additions and 18 deletions

View File

@@ -2,17 +2,17 @@
### Major Analysis Improvements
* Flow through `initialize` constructors is now taken into account. For example, in
* Flow through `initialize` constructors is now taken into account. For example, in
```rb
class C
class C
def initialize(x)
@field = x
end
end
end
C.new(y)
```
there will be flow from `y` to the field `@field` on the constructed `C` object.
C.new(y)
```
there will be flow from `y` to the field `@field` on the constructed `C` object.
### Minor Analysis Improvements

View File

@@ -2,17 +2,17 @@
### Major Analysis Improvements
* Flow through `initialize` constructors is now taken into account. For example, in
* Flow through `initialize` constructors is now taken into account. For example, in
```rb
class C
class C
def initialize(x)
@field = x
end
end
end
C.new(y)
```
there will be flow from `y` to the field `@field` on the constructed `C` object.
C.new(y)
```
there will be flow from `y` to the field `@field` on the constructed `C` object.
### Minor Analysis Improvements