Skip to content

Commit e9b4e57

Browse files
authored
Merge pull request #6775 from RasmusWL/fix-hasLocationInfo-url
Approved by aschackmull, erik-krogh, hvitved, jbj, tausbn
2 parents 089bb33 + ba990f7 commit e9b4e57

File tree

90 files changed

+129
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+129
-129
lines changed

Diff for: cpp/ql/lib/semmle/code/cpp/File.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Container extends Locatable, @container {
3838
* DEPRECATED: Use `getLocation` instead.
3939
* Gets a URL representing the location of this container.
4040
*
41-
* For more information see [Providing URLs](https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls).
41+
* For more information see [Providing URLs](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/#providing-urls).
4242
*/
4343
deprecated string getURL() { none() } // overridden by subclasses
4444

Diff for: cpp/ql/lib/semmle/code/cpp/Location.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Location extends @location {
6161
* The location spans column `startcolumn` of line `startline` to
6262
* column `endcolumn` of line `endline` in file `filepath`.
6363
* For more information, see
64-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
64+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
6565
*/
6666
predicate hasLocationInfo(
6767
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/XML.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class XMLLocatable extends @xmllocatable, TXMLLocatable {
2424
* The location spans column `startcolumn` of line `startline` to
2525
* column `endcolumn` of line `endline` in file `filepath`.
2626
* For more information, see
27-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
27+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2828
*/
2929
predicate hasLocationInfo(
3030
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/controlflow/BasicBlocks.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class BasicBlock extends ControlFlowNodeBase {
194194
* The location spans column `startcolumn` of line `startline` to
195195
* column `endcolumn` of line `endline` in file `filepath`.
196196
* For more information, see
197-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
197+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
198198
*
199199
* Yields no result if this basic block spans multiple source files.
200200
*/

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl2.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl3.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImpl4.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowImplLocal.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/dataflow/internal/DataFlowUtil.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class Node extends TNode {
101101
* The location spans column `startcolumn` of line `startline` to
102102
* column `endcolumn` of line `endline` in file `filepath`.
103103
* For more information, see
104-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
104+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
105105
*/
106106
predicate hasLocationInfo(
107107
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/DefaultTaintTracking.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ module TaintedWithPath {
479479
* The location spans column `startcolumn` of line `startline` to
480480
* column `endcolumn` of line `endline` in file `filepath`.
481481
* For more information, see
482-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
482+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
483483
*/
484484
predicate hasLocationInfo(
485485
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl2.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl3.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl4.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ class PathNode extends TPathNode {
32483248
* The location spans column `startcolumn` of line `startline` to
32493249
* column `endcolumn` of line `endline` in file `filepath`.
32503250
* For more information, see
3251-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
3251+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
32523252
*/
32533253
predicate hasLocationInfo(
32543254
string filepath, int startline, int startcolumn, int endline, int endcolumn
@@ -4033,7 +4033,7 @@ private module FlowExploration {
40334033
* The location spans column `startcolumn` of line `startline` to
40344034
* column `endcolumn` of line `endline` in file `filepath`.
40354035
* For more information, see
4036-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
4036+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
40374037
*/
40384038
predicate hasLocationInfo(
40394039
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class Node extends TIRDataFlowNode {
120120
* The location spans column `startcolumn` of line `startline` to
121121
* column `endcolumn` of line `endline` in file `filepath`.
122122
* For more information, see
123-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
123+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
124124
*/
125125
predicate hasLocationInfo(
126126
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/lib/semmlecode.cpp.dbscheme

+3-3
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ svnchurn(
245245
* The location spans column `startcolumn` of line `startline` to
246246
* column `endcolumn` of line `endline` in file `file`.
247247
* For more information, see
248-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
248+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
249249
*/
250250
locations_default(
251251
/** The location of an element that is not an expression or a statement. */
@@ -262,7 +262,7 @@ locations_default(
262262
* The location spans column `startcolumn` of line `startline` to
263263
* column `endcolumn` of line `endline` in file `file`.
264264
* For more information, see
265-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
265+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
266266
*/
267267
locations_stmt(
268268
/** The location of a statement. */
@@ -279,7 +279,7 @@ locations_stmt(
279279
* The location spans column `startcolumn` of line `startline` to
280280
* column `endcolumn` of line `endline` in file `file`.
281281
* For more information, see
282-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
282+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
283283
*/
284284
locations_expr(
285285
/** The location of an expression. */

Diff for: cpp/ql/src/AlertSuppression.ql

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class SuppressionScope extends ElementBase {
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-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
71+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
7272
*/
7373
predicate hasLocationInfo(
7474
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/src/Documentation/CommentedOutCode.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ class CommentBlock extends Comment {
198198
* The location spans column `startcolumn` of line `startline` to
199199
* column `endcolumn` of line `endline` in file `filepath`.
200200
* For more information, see
201-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
201+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
202202
*/
203203
predicate hasLocationInfo(
204204
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/src/Metrics/Internal/CallableExtents.ql

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class RangeFunction extends Function {
1818
* The location spans column `startcolumn` of line `startline` to
1919
* column `endcolumn` of line `endline` in file `filepath`.
2020
* For more information, see
21-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
21+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2222
*/
2323
predicate hasLocationInfo(string path, int sl, int sc, int el, int ec) {
2424
super.getLocation().hasLocationInfo(path, sl, sc, _, _) and

Diff for: cpp/ql/src/definitions.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Top extends Element {
2424
* The location spans column `startcolumn` of line `startline` to
2525
* column `endcolumn` of line `endline` in file `filepath`.
2626
* For more information, see
27-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
27+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2828
*/
2929
pragma[noopt]
3030
final predicate hasLocationInfo(

Diff for: cpp/ql/src/external/CodeDuplication.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Copy extends @duplication_or_similarity {
6161
* The location spans column `startcolumn` of line `startline` to
6262
* column `endcolumn` of line `endline` in file `filepath`.
6363
* For more information, see
64-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
64+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
6565
*/
6666
predicate hasLocationInfo(
6767
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: cpp/ql/src/external/DefectFilter.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import cpp
88
* column `startcolumn` of line `startline` to column `endcolumn` of line `endline`
99
* in file `filepath`.
1010
*
11-
* For more information, see [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
11+
* For more information, see [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
1212
*/
1313
external predicate defectResults(
1414
int id, string queryPath, string file, int startline, int startcol, int endline, int endcol,

Diff for: cpp/ql/src/external/MetricFilter.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import cpp
88
* column `startcolumn` of line `startline` to column `endcolumn` of line `endline`
99
* in file `filepath`.
1010
*
11-
* For more information, see [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
11+
* For more information, see [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
1212
*/
1313
external predicate metricResults(
1414
int id, string queryPath, string file, int startline, int startcol, int endline, int endcol,

Diff for: csharp/ql/lib/semmle/code/csharp/Attribute.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Attributable extends @attributable {
2525
* The location spans column `startcolumn` of line `startline` to
2626
* column `endcolumn` of line `endline` in file `filepath`.
2727
* For more information, see
28-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
28+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2929
*/
3030
predicate hasLocationInfo(
3131
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: csharp/ql/lib/semmle/code/csharp/File.qll

+1-1
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 [Providing URLs](https://help.semmle.com/QL/learn-ql/ql/locations.html#providing-urls).
36+
* For more information see [Providing URLs](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/#providing-urls).
3737
*/
3838
string getURL() { none() }
3939

Diff for: csharp/ql/lib/semmle/code/csharp/Location.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Location extends @location {
2828
* The location spans column `startcolumn` of line `startline` to
2929
* column `endcolumn` of line `endline` in file `filepath`.
3030
* For more information, see
31-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
31+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
3232
*/
3333
predicate hasLocationInfo(
3434
string filepath, int startline, int startcolumn, int endline, int endcolumn

Diff for: csharp/ql/lib/semmle/code/csharp/XML.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class XMLLocatable extends @xmllocatable, TXMLLocatable {
2424
* The location spans column `startcolumn` of line `startline` to
2525
* column `endcolumn` of line `endline` in file `filepath`.
2626
* For more information, see
27-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
27+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
2828
*/
2929
predicate hasLocationInfo(
3030
string filepath, int startline, int startcolumn, int endline, int endcolumn

0 commit comments

Comments
 (0)