Skip to content

Commit 7848c5f

Browse files
authored
Fix qldoc for getIncludeText
The '<' was HTML encoded for some reason.
1 parent c8b9314 commit 7848c5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/Include.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Include extends PreprocessorDirective, @ppd_include {
2121

2222
/**
2323
* Gets the token which occurs after `#include`, for example `"filename"`
24-
* or `&lt;filename>`.
24+
* or `<filename>`.
2525
*/
2626
string getIncludeText() { result = getHead() }
2727

0 commit comments

Comments
 (0)