Skip to content

Commit 8354439

Browse files
authored
Merge pull request #14263 from geoffw0/typos
CPP / Swift: Typos
2 parents 650d806 + a3579f6 commit 8354439

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,11 +1073,11 @@ private module GetConvertedResultExpression {
10731073
/**
10741074
* Gets the expression that should be returned as the result expression from `instr`.
10751075
*
1076-
* Note that this predicate may return multiple results in cases where a conversion belond to a
1076+
* Note that this predicate may return multiple results in cases where a conversion belongs to a
10771077
* different AST element than its operand.
10781078
*/
10791079
Expr getConvertedResultExpression(Instruction instr, int n) {
1080-
// Only fully converted instructions has a result for `asConvertedExpr`
1080+
// Only fully converted instructions have a result for `asConvertedExpr`
10811081
not conversionFlow(unique(Operand op |
10821082
// The address operand of a `InitializeDynamicAllocationInstruction` is
10831083
// special: we need to handle it during dataflow (since it's

swift/ql/lib/codeql/swift/security/CleartextLoggingExtensions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private class DefaultCleartextLoggingSink extends CleartextLoggingSink {
3030
}
3131

3232
/**
33-
* An barrier for cleartext logging vulnerabilities.
33+
* A barrier for cleartext logging vulnerabilities.
3434
* - encryption; encrypted values are not cleartext.
3535
* - booleans; these are more likely to be settings, rather than actual sensitive data.
3636
*/

swift/ql/lib/codeql/swift/security/CleartextStorageDatabaseExtensions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private class CleartextStorageDatabaseSinks extends SinkModelCsv {
114114
}
115115

116116
/**
117-
* An barrier for cleartext database storage vulnerabilities.
117+
* A barrier for cleartext database storage vulnerabilities.
118118
* - encryption; encrypted values are not cleartext.
119119
* - booleans; these are more likely to be settings, rather than actual sensitive data.
120120
*/

swift/ql/lib/codeql/swift/security/CleartextStoragePreferencesExtensions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private class NSUserDefaultsControllerStore extends CleartextStoragePreferencesS
7878
}
7979

8080
/**
81-
* An barrier for cleartext preferences storage vulnerabilities.
81+
* A barrier for cleartext preferences storage vulnerabilities.
8282
* - encryption; encrypted values are not cleartext.
8383
* - booleans; these are more likely to be settings, rather than actual sensitive data.
8484
*/

swift/ql/lib/codeql/swift/security/CleartextTransmissionExtensions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private class AlamofireTransmittedSink extends CleartextTransmissionSink {
4949
}
5050

5151
/**
52-
* An barrier for cleartext transmission vulnerabilities.
52+
* A barrier for cleartext transmission vulnerabilities.
5353
* - encryption; encrypted values are not cleartext.
5454
* - booleans; these are more likely to be settings, rather than actual sensitive data.
5555
*/

0 commit comments

Comments
 (0)