Skip to content

Commit 7916405

Browse files
committed
Replace help.semmle.com links by codeql.github.com links
1 parent a471120 commit 7916405

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
We welcome contributions to our CodeQL libraries and queries. Got an idea for a new check, or how to improve an existing query? Then please go ahead and open a pull request! Contributions to this project are [released](https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license) to the public under the [project's open source license](LICENSE).
44

5-
There is lots of useful documentation to help you write queries, ranging from information about query file structure to tutorials for specific target languages. For more information on the documentation available, see [CodeQL queries](https://help.semmle.com/QL/learn-ql/writing-queries/writing-queries.html) on [help.semmle.com](https://help.semmle.com).
5+
There is lots of useful documentation to help you write queries, ranging from information about query file structure to tutorials for specific target languages. For more information on the documentation available, see [CodeQL queries](https://codeql.github.com/docs/writing-codeql-queries/codeql-queries) on [codeql.github.com](https://codeql.github.com).
66

77
## Change notes
88

@@ -40,7 +40,7 @@ If you have an idea for a query that you would like to share with other CodeQL u
4040

4141
3. **Formatting**
4242

43-
- The queries and libraries must be autoformatted, for example using the "Format Document" command in [CodeQL for Visual Studio Code](https://help.semmle.com/codeql/codeql-for-vscode/procedures/about-codeql-for-vscode.html).
43+
- The queries and libraries must be autoformatted, for example using the "Format Document" command in [CodeQL for Visual Studio Code](https://codeql.github.com/docs/codeql-for-visual-studio-code/about-codeql-for-visual-studio-code).
4444

4545
If you prefer, you can either:
4646
1. install the [pre-commit framework](https://pre-commit.com/) and install the configured hooks on this repo via `pre-commit install`, or

javascript/ql/lib/semmle/javascript/Routing.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module Routing {
8888
* The location spans column `startcolumn` of line `startline` to
8989
* column `endcolumn` of line `endline` in file `filepath`.
9090
* For more information, see
91-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
91+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries).
9292
*/
9393
predicate hasLocationInfo(
9494
string filepath, int startline, int startcolumn, int endline, int endcolumn

python/ql/src/analysis/ImportFailure.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Ensure that all required modules and packages can be found when running the extr
2121
</recommendation>
2222
<references>
2323

24-
<li>Semmle Tutorial: <a href="https://help.semmle.com/codeql/codeql-cli/procedures/create-codeql-database.html">Creating a CodeQL database</a>.</li>
24+
<li>CodeQL Tutorial: <a href="https://codeql.github.com/docs/codeql-cli/creating-codeql-databases">Creating CodeQL databases</a>.</li>
2525

2626

2727
</references>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class DataFlowCall extends TDataFlowCall {
9090
* The location spans column `startcolumn` of line `startline` to
9191
* column `endcolumn` of line `endline` in file `filepath`.
9292
* For more information, see
93-
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
93+
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries).
9494
*/
9595
predicate hasLocationInfo(
9696
string filepath, int startline, int startcolumn, int endline, int endcolumn

0 commit comments

Comments
 (0)