Skip to content

Commit e886cf7

Browse files
committed
CPP: 'i.e.' -> 'that is'.
1 parent 81c58d5 commit e886cf7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

cpp/ql/src/Microsoft/SAL.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class SALParameter extends Parameter {
126126
}
127127

128128
/**
129-
* A SAL element, i.e. a SAL annotation or a declaration entry
129+
* A SAL element, that is, a SAL annotation or a declaration entry
130130
* that may have SAL annotations.
131131
*/
132132
library class SALElement extends Element {

cpp/ql/src/semmle/code/cpp/dispatch/VirtualDispatch.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module VirtualDispatch {
6363

6464
/**
6565
* Holds if `c` cannot inherit the member function `f`,
66-
* i.e. `c` or one of its supertypes overrides `f`.
66+
* that is, `c` or one of its supertypes overrides `f`.
6767
*/
6868
private predicate cannotInherit(Class c, MemberFunction f) {
6969
exists(Class overridingType, MemberFunction override |

cpp/ql/src/semmle/code/cpp/security/boostorg/asio/protocols.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ module BoostorgAsio {
5656
}
5757

5858
/**
59-
* returns the value for a approved protocols, but that are hard-coded (i.e. no protocol negotiation)
59+
* returns the value for an approved protocol, but that are hard-coded
60+
* (that is, no protocol negotiation)
6061
*/
6162
EnumConstant getAnApprovedButHardcodedProtocolConstant() {
6263
result = this.getATls12ProtocolConstant()

0 commit comments

Comments
 (0)