diff --git a/javascript/ql/lib/semmle/javascript/ApiGraphs.qll b/javascript/ql/lib/semmle/javascript/ApiGraphs.qll index 654b62dd26b..79aa8a2ee5c 100644 --- a/javascript/ql/lib/semmle/javascript/ApiGraphs.qll +++ b/javascript/ql/lib/semmle/javascript/ApiGraphs.qll @@ -110,7 +110,7 @@ module API { * identifies both `x` parameters. * * Observe how `getMember("myMethod")` behaves when the member is defined via a getter. When thinking in code patterns, - * it might seem obvious that `getMember` should have obtained a reference the getter method itself. + * it might seem obvious that `getMember` should have obtained a reference to the getter method itself. * But when seeing it as an access to `myMethod` performed by the library, we can deduce that the relevant expression * on the client side is actually the return-value of the getter. *