From 72319b538f9d498d004197baaa0f09a91125fed6 Mon Sep 17 00:00:00 2001 From: Nick Rolfe Date: Fri, 18 Dec 2020 12:47:31 +0000 Subject: [PATCH] fix typo in comment --- ql/src/codeql_ruby/AST.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() } }