File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/ql/lib/semmle/python Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ module API {
32
32
* 2. Follow up with a chain of accessors such as `getMember` describing how to get to the relevant API function.
33
33
* 3. Map the resulting API graph nodes to data-flow nodes, using `asSource` or `asSink`.
34
34
*
35
- * For example, a simplified way to get arguments to `json.dumps` would be
35
+ * For example, a simplified way to get the first argument of a call to `json.dumps` would be
36
36
* ```ql
37
37
* API::moduleImport("json").getMember("dumps").getParameter(0).asSink()
38
38
* ```
@@ -108,7 +108,7 @@ module API {
108
108
* external library (or in general, any external codebase).
109
109
*
110
110
* Concretely, this is either an argument passed to a call to external code,
111
- * or the right-hand side of a property write on an object flowing into such a call.
111
+ * or the right-hand side of an attribute write on an object flowing into such a call.
112
112
*
113
113
* For example:
114
114
* ```python
You can’t perform that action at this time.
0 commit comments