Skip to content

CPP / Swift: Typos #14263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1073,11 +1073,11 @@ private module GetConvertedResultExpression {
/**
* Gets the expression that should be returned as the result expression from `instr`.
*
* Note that this predicate may return multiple results in cases where a conversion belond to a
* Note that this predicate may return multiple results in cases where a conversion belongs to a
* different AST element than its operand.
*/
Expr getConvertedResultExpression(Instruction instr, int n) {
// Only fully converted instructions has a result for `asConvertedExpr`
// Only fully converted instructions have a result for `asConvertedExpr`
not conversionFlow(unique(Operand op |
// The address operand of a `InitializeDynamicAllocationInstruction` is
// special: we need to handle it during dataflow (since it's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private class DefaultCleartextLoggingSink extends CleartextLoggingSink {
}

/**
* An barrier for cleartext logging vulnerabilities.
* A barrier for cleartext logging vulnerabilities.
* - encryption; encrypted values are not cleartext.
* - booleans; these are more likely to be settings, rather than actual sensitive data.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private class CleartextStorageDatabaseSinks extends SinkModelCsv {
}

/**
* An barrier for cleartext database storage vulnerabilities.
* A barrier for cleartext database storage vulnerabilities.
* - encryption; encrypted values are not cleartext.
* - booleans; these are more likely to be settings, rather than actual sensitive data.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private class NSUserDefaultsControllerStore extends CleartextStoragePreferencesS
}

/**
* An barrier for cleartext preferences storage vulnerabilities.
* A barrier for cleartext preferences storage vulnerabilities.
* - encryption; encrypted values are not cleartext.
* - booleans; these are more likely to be settings, rather than actual sensitive data.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private class AlamofireTransmittedSink extends CleartextTransmissionSink {
}

/**
* An barrier for cleartext transmission vulnerabilities.
* A barrier for cleartext transmission vulnerabilities.
* - encryption; encrypted values are not cleartext.
* - booleans; these are more likely to be settings, rather than actual sensitive data.
*/
Expand Down