diff --git a/ql/src/codeql_ruby/AST.qll b/ql/src/codeql_ruby/AST.qll index a6445d133b9..1300f291969 100644 --- a/ql/src/codeql_ruby/AST.qll +++ b/ql/src/codeql_ruby/AST.qll @@ -28,6 +28,6 @@ class AstNode extends @ast_node { /** Gets a textual representation of this node. */ string toString() { result = "AstNode" } - /** Gets the location if this node. */ + /** Gets the location of this node. */ Location getLocation() { result = generated.getLocation() } }