File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/ql/lib/semmle/python/frameworks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ private import semmle.python.frameworks.internal.PoorMansFunctionResolution
1717module SocketIO {
1818 /** Provides models for socketio `Server` and `AsyncServer` classes. */
1919 module Server {
20- /** An instance of a socketio `Server` or `AsyncServer`. */
20+ /** Gets an instance of a socketio `Server` or `AsyncServer`. */
2121 API:: Node server ( ) {
2222 result = API:: moduleImport ( "socketio" ) .getMember ( [ "Server" , "AsyncServer" ] ) .getAnInstance ( )
2323 }
2424
25- /** A decorator that indicates a socketio event handler. */
25+ /** Gets a decorator that indicates a socketio event handler. */
2626 private API:: Node serverEventAnnotation ( ) {
2727 result = server ( ) .getMember ( "event" )
2828 or
You can’t perform that action at this time.
0 commit comments