Skip to content

Commit cfd08f2

Browse files
committed
FileSystem: Fix qldoc.
1 parent 20cbab9 commit cfd08f2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

shared/util/codeql/util/FileSystem.qll

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ signature module InputSig {
1111
/**
1212
* Gets the absolute path of this container.
1313
*
14-
* Typically `containerparent(result, this)`.
14+
* Typically `folders(this, result) or files(this, result)`.
1515
*/
1616
string getAbsolutePath();
1717

18-
/** Gets the parent container of this container, if any. */
18+
/**
19+
* Gets the parent container of this container, if any.
20+
*
21+
* Typically `containerparent(result, this)`.
22+
*/
1923
ContainerBase getParentContainer();
2024
}
2125

0 commit comments

Comments
 (0)