Python: Fix grammar

Co-authored-by: Taus <tausbn@github.com>
This commit is contained in:
Rasmus Wriedt Larsen
2021-03-05 17:08:20 +01:00
committed by GitHub
parent a09f8c4b4a
commit 83539928e6

View File

@@ -51,7 +51,7 @@ DataFlow::Node vulnerableHostname(string hostname) {
vulnerableHostname(DataFlow::TypeTracker::end(), hostname).flowsTo(result)
}
/** Gets a reference to tuple containing a hostname as the first element, that cane be used to bind to all interfaces. */
/** Gets a reference to tuple containing a hostname as the first element, that can be used to bind to all interfaces. */
private DataFlow::LocalSourceNode vulnerableAddressTuple(DataFlow::TypeTracker t, string hostname) {
t.start() and
exists(Tuple tup |
@@ -76,7 +76,7 @@ private predicate vulnerableAddressTuple_first_join(
DataFlow::StepSummary::step(vulnerableAddressTuple(t2, hostname), res, summary)
}
/** Gets a reference to tuple containing a hostname as the first element, that cane be used to bind to all interfaces. */
/** Gets a reference to tuple containing a hostname as the first element, that can be used to bind to all interfaces. */
DataFlow::Node vulnerableAddressTuple(string hostname) {
vulnerableAddressTuple(DataFlow::TypeTracker::end(), hostname).flowsTo(result)
}