We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5cccd commit 8a2485aCopy full SHA for 8a2485a
javascript/ql/lib/semmle/javascript/endpoints/EndpointNaming.qll
@@ -8,15 +8,15 @@
8
* However, there are cases where classes and functions can be exposed to client
9
* code without being accessible as a qualified name. For example;
10
* ```js
11
- * // 'Foo' is internal, but clients can reach its methods via `getFoo().m()`
+ * // 'Foo' is internal, but clients can call its methods, e.g. `getFoo().m()`
12
* class Foo {
13
* m() {}
14
* }
15
* export function getFoo() {
16
* return new Foo();
17
18
*
19
- * // Clients can reach m() via getObj().m()
+ * // Clients can call m() via getObj().m()
20
* export function getObj() {
21
* return {
22
0 commit comments