Skip to content

Commit 9d1a050

Browse files
author
james
committed
update links to locations in .qll files
1 parent d776d9f commit 9d1a050

File tree

27 files changed

+33
-33
lines changed

27 files changed

+33
-33
lines changed

cpp/ql/src/Documentation/CommentedOutCode.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class CommentBlock extends Comment {
127127
* The location spans column `startcolumn` of line `startline` to
128128
* column `endcolumn` of line `endline` in file `filepath`.
129129
* For more information, see
130-
* [LGTM locations](https://lgtm.com/help/ql/locations).
130+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
131131
*/
132132
predicate hasLocationInfo(string filepath, int startline, int startcolumn, int endline, int endcolumn) {
133133
this.getLocation().hasLocationInfo(filepath, startline, startcolumn, _, _) and

cpp/ql/src/definitions.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Top extends Element {
2323
* The location spans column `startcolumn` of line `startline` to
2424
* column `endcolumn` of line `endline` in file `filepath`.
2525
* For more information, see
26-
* [LGTM locations](https://lgtm.com/help/ql/locations).
26+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
2727
*/
2828
predicate hasLocationInfo(string filepath,
2929
int startline, int startcolumn,

cpp/ql/src/semmle/code/cpp/File.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ abstract class Container extends Locatable, @container {
3434
* DEPRECATED: Use `getLocation` instead.
3535
* Gets a URL representing the location of this container.
3636
*
37-
* For more information see https://lgtm.com/help/ql/locations#providing-urls.
37+
* For more information see https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls.
3838
*/
3939
deprecated abstract string getURL();
4040

cpp/ql/src/semmle/code/cpp/Location.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class Location extends @location {
6868
* The location spans column `startcolumn` of line `startline` to
6969
* column `endcolumn` of line `endline` in file `filepath`.
7070
* For more information, see
71-
* [LGTM locations](https://lgtm.com/help/ql/locations).
71+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
7272
*/
7373
predicate hasLocationInfo(
7474
string filepath, int startline, int startcolumn, int endline, int endcolumn) {

cpp/ql/src/semmle/code/cpp/controlflow/BasicBlocks.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class BasicBlock extends ControlFlowNodeBase {
195195
* The location spans column `startcolumn` of line `startline` to
196196
* column `endcolumn` of line `endline` in file `filepath`.
197197
* For more information, see
198-
* [LGTM locations](https://lgtm.com/help/ql/locations).
198+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
199199
*
200200
* Yields no result if this basic block spans multiple source files.
201201
*/

csharp/ql/src/semmle/code/csharp/File.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Container extends @container {
3333
/**
3434
* Gets a URL representing the location of this container.
3535
*
36-
* For more information see https://lgtm.com/help/ql/locations#providing-urls.
36+
* For more information see https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls.
3737
*/
3838
string getURL() { none() }
3939

csharp/ql/src/semmle/code/csharp/Location.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Location extends @location {
2727
* The location spans column `startcolumn` of line `startline` to
2828
* column `endcolumn` of line `endline` in file `filepath`.
2929
* For more information, see
30-
* [LGTM locations](https://lgtm.com/help/ql/locations).
30+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3131
*/
3232
predicate hasLocationInfo(
3333
string filepath, int startline, int startcolumn, int endline, int endcolumn

java/ql/src/external/DefectFilter.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import java
88
* column `startcolumn` of line `startline` to column `endcolumn` of line `endline`
99
* in file `filepath`.
1010
*
11-
* For more information, see [LGTM locations](https://lgtm.com/help/ql/locations).
11+
* For more information, see [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
1212
*/
1313
external predicate defectResults(
1414
int id, string queryPath, string file, int startline, int startcol, int endline, int endcol,

java/ql/src/semmle/code/FileSystem.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Container extends @container, Top {
3333
/**
3434
* Gets a URL representing the location of this container.
3535
*
36-
* For more information see https://lgtm.com/help/ql/locations#providing-urls.
36+
* For more information see https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls.
3737
*/
3838
abstract string getURL();
3939

java/ql/src/semmle/code/Location.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class Top extends @top {
5757
* The location spans column `startcolumn` of line `startline` to
5858
* column `endcolumn` of line `endline` in file `filepath`.
5959
* For more information, see
60-
* [LGTM locations](https://lgtm.com/help/ql/locations).
60+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
6161
*/
6262
predicate hasLocationInfo(
6363
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -150,7 +150,7 @@ class Location extends @location {
150150
* The location spans column `startcolumn` of line `startline` to
151151
* column `endcolumn` of line `endline` in file `filepath`.
152152
* For more information, see
153-
* [LGTM locations](https://lgtm.com/help/ql/locations).
153+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
154154
*/
155155
predicate hasLocationInfo(
156156
string filepath, int startline, int startcolumn, int endline, int endcolumn

0 commit comments

Comments
 (0)