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 ### 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 ```rb
class C class C
def initialize(x) def initialize(x)
@field = x @field = x
end
end end
end
C.new(y) C.new(y)
``` ```
there will be flow from `y` to the field `@field` on the constructed `C` object. there will be flow from `y` to the field `@field` on the constructed `C` object.
### Minor Analysis Improvements ### Minor Analysis Improvements

View File

@@ -2,17 +2,17 @@
### Major Analysis Improvements ### 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 ```rb
class C class C
def initialize(x) def initialize(x)
@field = x @field = x
end
end end
end
C.new(y) C.new(y)
``` ```
there will be flow from `y` to the field `@field` on the constructed `C` object. there will be flow from `y` to the field `@field` on the constructed `C` object.
### Minor Analysis Improvements ### Minor Analysis Improvements