Skip to content

Commit 81137aa

Browse files
author
james
committed
update links to locations in .ql files
1 parent 9d1a050 commit 81137aa

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

cpp/ql/src/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class SuppressionScope extends ElementBase {
6464
* The location spans column `startcolumn` of line `startline` to
6565
* column `endcolumn` of line `endline` in file `filepath`.
6666
* For more information, see
67-
* [LGTM locations](https://lgtm.com/help/ql/locations).
67+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
6868
*/
6969
predicate hasLocationInfo(string filepath, int startline, int startcolumn, int endline, int endcolumn) {
7070
this.(SuppressionComment).covers(filepath, startline, startcolumn, endline, endcolumn)

cpp/ql/src/Metrics/Internal/CallableExtents.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class RangeFunction extends Function {
1717
* The location spans column `startcolumn` of line `startline` to
1818
* column `endcolumn` of line `endline` in file `filepath`.
1919
* For more information, see
20-
* [LGTM locations](https://lgtm.com/help/ql/locations).
20+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
2121
*/
2222
predicate hasLocationInfo(string path, int sl, int sc, int el, int ec) {
2323
super.getLocation().hasLocationInfo(path, sl, sc, _, _)

csharp/ql/src/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class SuppressionScope extends @commentline {
5353
* The location spans column `startcolumn` of line `startline` to
5454
* column `endcolumn` of line `endline` in file `filepath`.
5555
* For more information, see
56-
* [LGTM locations](https://lgtm.com/help/ql/locations).
56+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
5757
*/
5858
predicate hasLocationInfo(
5959
string filepath, int startline, int startcolumn, int endline, int endcolumn

csharp/ql/src/definitions.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ abstract class Use extends @type_mention_parent {
1515
* The location spans column `startcolumn` of line `startline` to
1616
* column `endcolumn` of line `endline` in file `filepath`.
1717
* For more information, see
18-
* [LGTM locations](https://lgtm.com/help/ql/locations).
18+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
1919
*/
2020
predicate hasLocationInfo(
2121
string filepath, int startline, int startcolumn, int endline, int endcolumn

java/ql/src/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class SuppressionScope extends @javadoc {
5959
* The location spans column `startcolumn` of line `startline` to
6060
* column `endcolumn` of line `endline` in file `filepath`.
6161
* For more information, see
62-
* [LGTM locations](https://lgtm.com/help/ql/locations).
62+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
6363
*/
6464
predicate hasLocationInfo(
6565
string filepath, int startline, int startcolumn, int endline, int endcolumn

javascript/ql/src/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class SuppressionScope extends @locatable {
6262
* The location spans column `startcolumn` of line `startline` to
6363
* column `endcolumn` of line `endline` in file `filepath`.
6464
* For more information, see
65-
* [LGTM locations](https://lgtm.com/help/ql/locations).
65+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
6666
*/
6767
predicate hasLocationInfo(
6868
string filepath, int startline, int startcolumn, int endline, int endcolumn

javascript/ql/src/Expressions/MisspelledIdentifier.ql

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

javascript/ql/src/LanguageFeatures/EmptyArrayInit.ql

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

javascript/ql/src/LanguageFeatures/SpuriousArguments.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class SpuriousArguments extends Expr {
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

python/ql/src/analysis/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SuppressionScope extends @py_comment {
106106
* The location spans column `startcolumn` of line `startline` to
107107
* column `endcolumn` of line `endline` in file `filepath`.
108108
* For more information, see
109-
* [LGTM locations](https://lgtm.com/help/ql/locations).
109+
* [LGTM locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
110110
*/
111111
predicate hasLocationInfo(string filepath, int startline, int startcolumn, int endline, int endcolumn) {
112112
this.(SuppressionComment).covers(filepath, startline, startcolumn, endline, endcolumn)

0 commit comments

Comments
 (0)