Skip to content

Commit 078cebe

Browse files
authored
Merge pull request #351 from github/aibaars/fix-broken-links
Update broken links
2 parents 0d72a51 + 112b7a8 commit 078cebe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Follow the steps below to help other users understand what your query does, and
3131

3232
2. **Format your code correctly**
3333

34-
All of the standard CodeQL queries and libraries are uniformly formatted for clarity and consistency, so we strongly recommend that all contributions follow the same formatting guidelines. If you use the CodeQL extension for Visual Studio Code, you can auto-format your query using the [Format Document command](https://help.semmle.com/codeql/codeql-for-vscode/procedures/about-codeql-for-vscode.html). For more information, see the [QL style guide](https://github.com/github/codeql/blob/main/docs/ql-style-guide.md).
34+
All of the standard CodeQL queries and libraries are uniformly formatted for clarity and consistency, so we strongly recommend that all contributions follow the same formatting guidelines. If you use the CodeQL extension for Visual Studio Code, you can auto-format your query using the [Format Document command](https://code.visualstudio.com/docs/editor/codebasics#_formatting). For more information, see the [QL style guide](https://github.com/github/codeql/blob/main/docs/ql-style-guide.md).
3535

3636
3. **Make sure your query has the correct metadata**
3737

ql/docs/experimental.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Experimental queries and libraries may not be actively maintained as the standar
2121

2222
3. **Formatting**
2323

24-
- The queries and libraries must be [autoformatted](https://help.semmle.com/codeql/codeql-for-vscode/reference/editor.html#autoformatting).
24+
- The queries and libraries must be [autoformatted](https://code.visualstudio.com/docs/editor/codebasics#_formatting).
2525

2626
4. **Compilation**
2727

ql/lib/codeql/ruby/dataflow/internal/DataFlowPublic.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Node extends TNode {
3232
* The location spans column `startcolumn` of line `startline` to
3333
* column `endcolumn` of line `endline` in file `filepath`.
3434
* For more information, see
35-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
35+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
3636
*/
3737
predicate hasLocationInfo(
3838
string filepath, int startline, int startcolumn, int endline, int endcolumn

ql/src/AlertSuppression.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SuppressionScope extends @ruby_token_comment {
6363
* The location spans column `startcolumn` of line `startline` to
6464
* column `endcolumn` of line `endline` in file `filepath`.
6565
* For more information, see
66-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
66+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
6767
*/
6868
predicate hasLocationInfo(
6969
string filepath, int startline, int startcolumn, int endline, int endcolumn

0 commit comments

Comments
 (0)