Skip to content

Commit 35af797

Browse files
authored
Fix broken links
1 parent 5cdf0b5 commit 35af797

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/codeql/codeql-language-guides/modeling-data-flow-in-go-libraries.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ When analyzing a Go program, CodeQL does not examine the source code for
77
external packages. To track the flow of untrusted data through a library, you
88
can create a model of the library.
99

10-
You can find existing models in the ``ql/src/semmle/go/frameworks/`` folder of the
11-
`CodeQL for Go repository <https://github.com/github/codeql-go/tree/main/ql/src/semmle/go/frameworks>`__.
10+
You can find existing models in the ``ql/lib/semmle/go/frameworks/`` folder of the
11+
`CodeQL for Go repository <https://github.com/github/codeql-go/tree/main/ql/lib/semmle/go/frameworks>`__.
1212
To add a new model, you should make a new file in that folder, named after the library.
1313

1414
Sources
@@ -102,8 +102,8 @@ Data-flow sinks are specified by queries rather than by library models.
102102
However, you can use library models to indicate when functions belong to
103103
special categories. Queries can then use these categories when specifying
104104
sinks. Classes representing these special categories are contained in
105-
``ql/src/semmle/go/Concepts.qll`` in the `CodeQL for Go repository
106-
<https://github.com/github/codeql-go/blob/main/ql/src/semmle/go/Concepts.qll>`__.
105+
``ql/lib/semmle/go/Concepts.qll`` in the `CodeQL for Go repository
106+
<https://github.com/github/codeql-go/blob/main/ql/lib/semmle/go/Concepts.qll>`__.
107107
``Concepts.qll`` includes classes for logger mechanisms,
108108
HTTP response writers, HTTP redirects, and marshaling and unmarshaling
109109
functions.

0 commit comments

Comments
 (0)