Skip to content

Commit 3e6296c

Browse files
committed
Python: Fix grammar in QLDoc
1 parent ed11e8f commit 3e6296c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1705,15 +1705,15 @@ private module Django {
17051705
/** Gets a reference to the `as_view` classmethod of this class. */
17061706
DataFlow::Node asViewRef() { result = this.asViewRef(DataFlow::TypeTracker::end()) }
17071707

1708-
/** Gets a reference to a the result of calling the `as_view` classmethod of this class. */
1708+
/** Gets a reference to the result of calling the `as_view` classmethod of this class. */
17091709
private DataFlow::Node asViewResult(DataFlow::TypeTracker t) {
17101710
t.start() and
17111711
result.asCfgNode().(CallNode).getFunction() = this.asViewRef().asCfgNode()
17121712
or
17131713
exists(DataFlow::TypeTracker t2 | result = asViewResult(t2).track(t2, t))
17141714
}
17151715

1716-
/** Gets a reference to a the result of calling the `as_view` classmethod of this class. */
1716+
/** Gets a reference to the result of calling the `as_view` classmethod of this class. */
17171717
DataFlow::Node asViewResult() { result = asViewResult(DataFlow::TypeTracker::end()) }
17181718
}
17191719

0 commit comments

Comments
 (0)