Skip to content

Commit e6359c5

Browse files
committed
C++: Fix QLDoc comment
1 parent fed331e commit e6359c5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/ql/lib/semmle/code/cpp/regex/RegexTreeView.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ private module Impl implements RegexTreeViewSig {
12381238
}
12391239

12401240
/**
1241-
* Holds if `root` has the `s` flag for multi-line matching.
1241+
* Holds if `root` has the `s` flag for dot-all matching.
12421242
*/
12431243
predicate isDotAll(RegExpTerm root) {
12441244
root.isRootTerm() and

cpp/ql/lib/semmle/code/cpp/regex/internal/ParseRegExp.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ private import semmle.code.cpp.exprs.Literal
1414
*/
1515
abstract class RegExp extends StringLiteral {
1616
/**
17-
* Holds if this `RegExp` has the `s` flag for multi-line matching.
17+
* Holds if this `RegExp` has the `s` flag for dot-all matching.
1818
*/
1919
predicate isDotAll() { none() }
2020

0 commit comments

Comments
 (0)