From c1da83bf6c6134e40b9cb29ba30883df7e7d8244 Mon Sep 17 00:00:00 2001 From: Asger F <42069257+asger-semmle@users.noreply.github.com> Date: Mon, 25 Nov 2019 11:55:25 +0000 Subject: [PATCH] Fix typo in qldoc Co-Authored-By: Max Schaefer <54907921+max-schaefer@users.noreply.github.com> --- javascript/ql/src/semmle/javascript/Regexp.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/ql/src/semmle/javascript/Regexp.qll b/javascript/ql/src/semmle/javascript/Regexp.qll index 6157729d81d..d43f14dcacb 100644 --- a/javascript/ql/src/semmle/javascript/Regexp.qll +++ b/javascript/ql/src/semmle/javascript/Regexp.qll @@ -937,7 +937,7 @@ module RegExp { /** Gets the string `"?"` used to represent a regular expression whose flags are unknown. */ string unknownFlag() { result = "?" } - /** Holds `flags` includes the `m` flag. */ + /** Holds if `flags` includes the `m` flag. */ bindingset[flags] predicate isMultiline(string flags) { flags.matches("%m%") }