diff --git a/java/ql/lib/semmle/code/java/Concepts.qll b/java/ql/lib/semmle/code/java/Concepts.qll index 4fcb89918b6..8f1d5e4fa69 100644 --- a/java/ql/lib/semmle/code/java/Concepts.qll +++ b/java/ql/lib/semmle/code/java/Concepts.qll @@ -34,8 +34,9 @@ class RegexMatch extends Expr instanceof RegexMatch::Range { Expr getString() { result = super.getString() } /** - * Gets the name of this regex match, typically the name of an executing method. - * This is used for nice alert messages and should include the module if possible. + * Gets the name of this regex match, typically the name of an executing + * method. This is used for nice alert messages and should include the + * type-qualified name if possible. */ string getName() { result = super.getName() } } @@ -59,8 +60,9 @@ module RegexMatch { abstract Expr getString(); /** - * Gets the name of this regex match, typically the name of an executing method. - * This is used for nice alert messages and should include the module if possible. + * Gets the name of this regex match, typically the name of an executing + * method. This is used for nice alert messages and should include the + * type-qualified name if possible. */ abstract string getName(); }