remove a bunch of repeated words

This commit is contained in:
Erik Krogh Kristensen
2022-07-14 12:35:23 +02:00
parent 2ea2bd8966
commit 85a652f3d1
13 changed files with 13 additions and 13 deletions

View File

@@ -335,7 +335,7 @@ module Expressions {
// ```csharp
// new Dictionary<int, string>() { [0] = "Zero", [1] = "One", [2] = "Two" }
// ```
// need special treatment, because the the accesses `[0]`, `[1]`, and `[2]`
// need special treatment, because the accesses `[0]`, `[1]`, and `[2]`
// have no qualifier.
this = any(MemberInitializer mi).getLValue()
}

View File

@@ -85,7 +85,7 @@ class ExternalApi extends DotNet::Callable {
defaultAdditionalTaintStep(this.getAnInput(), _)
}
/** Holds if this API is is a constructor without parameters. */
/** Holds if this API is a constructor without parameters. */
private predicate isParameterlessConstructor() {
this instanceof Constructor and this.getNumberOfParameters() = 0
}