Skip to content

Commit 549fb03

Browse files
authored
Apply suggestions from code review
1 parent 462da63 commit 549fb03

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

csharp/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* The query `cs/static-field-written-by-instance` is updated to handle properties.
66
* C# 11: Support for explicit interface member implementation of operators.
7-
* The extraction of member modifiers has been generalised, which could lead to the extraction of more modifiers.
7+
* The extraction of member modifiers has been generalized, which could lead to the extraction of more modifiers.
88
* C# 11: Added extractor and library support for `file` scoped types.
99
* C# 11: Added extractor support for `required` fields and properties.
1010
* C# 11: Added library support for `checked` operators.

csharp/ql/lib/change-notes/released/0.5.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* The query `cs/static-field-written-by-instance` is updated to handle properties.
66
* C# 11: Support for explicit interface member implementation of operators.
7-
* The extraction of member modifiers has been generalised, which could lead to the extraction of more modifiers.
7+
* The extraction of member modifiers has been generalized, which could lead to the extraction of more modifiers.
88
* C# 11: Added extractor and library support for `file` scoped types.
99
* C# 11: Added extractor support for `required` fields and properties.
1010
* C# 11: Added library support for `checked` operators.

go/ql/src/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Minor Analysis Improvements
44

5-
* The query `go/incorrect-integer-conversion` now correctly recognises guards of the form `if val <= x` to protect a conversion `uintX(val)` when `x` is in the range `(math.MaxIntX, math.MaxUintX]`.
5+
* The query `go/incorrect-integer-conversion` now correctly recognizes guards of the form `if val <= x` to protect a conversion `uintX(val)` when `x` is in the range `(math.MaxIntX, math.MaxUintX]`.
66

77
## 0.4.3
88

go/ql/src/change-notes/released/0.4.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
### Minor Analysis Improvements
44

5-
* The query `go/incorrect-integer-conversion` now correctly recognises guards of the form `if val <= x` to protect a conversion `uintX(val)` when `x` is in the range `(math.MaxIntX, math.MaxUintX]`.
5+
* The query `go/incorrect-integer-conversion` now correctly recognizes guards of the form `if val <= x` to protect a conversion `uintX(val)` when `x` is in the range `(math.MaxIntX, math.MaxUintX]`.

python/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Major Analysis Improvements
44

5-
* We use a new analysis for the call-graph (determining which function is called). This can lead to changed results. In most cases this is much more accurate than the old call-graph that was based on points-to, but we do lose a few valid edges in the call-graph, especially around methods that are not defined inside its' class.
5+
* We use a new analysis for the call-graph (determining which function is called). This can lead to changed results. In most cases this is much more accurate than the old call-graph that was based on points-to, but we do lose a few valid edges in the call-graph, especially around methods that are not defined inside its class.
66

77
### Minor Analysis Improvements
88

python/ql/lib/change-notes/released/0.8.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Major Analysis Improvements
44

5-
* We use a new analysis for the call-graph (determining which function is called). This can lead to changed results. In most cases this is much more accurate than the old call-graph that was based on points-to, but we do lose a few valid edges in the call-graph, especially around methods that are not defined inside its' class.
5+
* We use a new analysis for the call-graph (determining which function is called). This can lead to changed results. In most cases this is much more accurate than the old call-graph that was based on points-to, but we do lose a few valid edges in the call-graph, especially around methods that are not defined inside its class.
66

77
### Minor Analysis Improvements
88

0 commit comments

Comments
 (0)