From cc5bbfce0be9b6c58f3ea8c54ede2251045cf702 Mon Sep 17 00:00:00 2001 From: Alex Ford Date: Wed, 21 Apr 2021 12:57:55 +0100 Subject: [PATCH] Get -> Gets --- ql/src/codeql/files/FileSystem.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ql/src/codeql/files/FileSystem.qll b/ql/src/codeql/files/FileSystem.qll index 25da10a0d92..e87d6978afd 100644 --- a/ql/src/codeql/files/FileSystem.qll +++ b/ql/src/codeql/files/FileSystem.qll @@ -169,7 +169,7 @@ class File extends Container, @file { /** Gets the URL of this file. */ override string getURL() { result = "file://" + this.getAbsolutePath() + ":0:0:0:0" } - /** Get a token in this file. */ + /** Gets a token in this file. */ private Generated::Token getAToken() { result.getLocation().getFile() = this } /** Holds if `line` contains a token. */