Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b070ba commit 165514cCopy full SHA for 165514c
1 file changed
python/ql/lib/semmle/python/frameworks/Aiohttp.qll
@@ -45,7 +45,7 @@ module AiohttpWebModel {
45
}
46
47
/** Gets a reference to an `aiohttp.web.UrlDispatcher` instance. */
48
- API::Node urlDispathcerInstance() {
+ API::Node urlDispatcherInstance() {
49
result = API::moduleImport("aiohttp").getMember("web").getMember("UrlDispatcher").getReturn()
50
or
51
result = applicationInstance().getMember("router")
@@ -170,7 +170,7 @@ module AiohttpWebModel {
170
funcName = "route" and
171
routeArgsStart = 1
172
|
173
- this = urlDispathcerInstance().getMember("add_" + funcName).getACall()
+ this = urlDispatcherInstance().getMember("add_" + funcName).getACall()
174
175
this = API::moduleImport("aiohttp").getMember("web").getMember(funcName).getACall()
176
)
0 commit comments