fix typo in comment

This commit is contained in:
Nick Rolfe
2020-12-18 12:47:31 +00:00
committed by GitHub
parent 8f1c916242
commit 72319b538f

View File

@@ -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() }
}