From a66743192e72e7f12f7f214c74153d5ad783fc4a Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 5 Feb 2021 10:58:47 +0100 Subject: [PATCH] Python: Fix typo in docs Co-authored-by: yoff --- python/ql/src/semmle/python/ApiGraphs.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ql/src/semmle/python/ApiGraphs.qll b/python/ql/src/semmle/python/ApiGraphs.qll index 6bacac72c3a..20d5c848a0d 100644 --- a/python/ql/src/semmle/python/ApiGraphs.qll +++ b/python/ql/src/semmle/python/ApiGraphs.qll @@ -274,7 +274,7 @@ module API { * this node, it is reachable via `moduleImport("foo").getMember("bar").getMember("baz")` and * thus `fbb.quux` is reachable via the path mentioned above. * - * When we see `from foo.bar.baz import quux as fbb` a similar thing happens. First, `foo.bar.baz` + * When we see `from foo.bar.baz import quux as fbbq` a similar thing happens. First, `foo.bar.baz` * is seen as a use of the API graph node as before. Then `import quux as fbbq` is seen as * a member lookup of `quux` on the API graph node for `foo.bar.baz`, and then finally the * data-flow node `fbbq` is marked as a use of the same path mentioned above.