Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d6a33a1

Browse files
yofftausbnRasmusWL
authored
Apply suggestions from code review
Co-authored-by: Taus <[email protected]> Co-authored-by: Rasmus Wriedt Larsen <[email protected]>
1 parent b71ea40 commit d6a33a1

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

python/ql/src/semmle/python/dataflow/new/RemoteFlowSources.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Provides an extension point for for modelling user-controlled data.
2+
* Provides an extension point for for modeling user-controlled data.
33
* Such data is often used as data-flow sources in security queries.
44
*/
55

python/ql/src/semmle/python/dataflow/new/internal/DataFlowPublic.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class BarrierGuard extends GuardNode {
356356
}
357357

358358
/**
359-
* IPA type for tracking data content associated with values.
359+
* Algebraic datatype for tracking data content associated with values.
360360
* Content can be collection elements or object attributes.
361361
*/
362362
newtype TContent =
@@ -397,7 +397,7 @@ class SetElementContent extends TSetElementContent, Content {
397397
override string toString() { result = "Set element" }
398398
}
399399

400-
/** The content, at a specifik index, of an element of a tuple. */
400+
/** The content, at a specific index, of an element of a tuple. */
401401
class TupleElementContent extends TTupleElementContent, Content {
402402
int index;
403403

python/ql/src/semmle/python/frameworks/MySQLdb.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module MySQLdb {
3232
/** Gets a reference to the `MySQLdb` module. */
3333
DataFlow::Node moduleMySQLdb() { result = moduleMySQLdb(DataFlow::TypeTracker::end()) }
3434

35-
/** MySQLdb implements PEP 249, providing ways to execute SQL statments against a database. */
35+
/** MySQLdb implements PEP 249, providing ways to execute SQL statements against a database. */
3636
class MySQLdb extends PEP249Module {
3737
MySQLdb() { this = moduleMySQLdb() }
3838
}

0 commit comments

Comments
 (0)