From 87b2c142bc34a602121f47939463289971e569f4 Mon Sep 17 00:00:00 2001 From: Arthur Baars Date: Thu, 25 Feb 2021 10:23:29 +0100 Subject: [PATCH] Update qldoc --- ql/src/codeql_ruby/ast/Control.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ql/src/codeql_ruby/ast/Control.qll b/ql/src/codeql_ruby/ast/Control.qll index 36893065fd5..b8cf8144b2e 100644 --- a/ql/src/codeql_ruby/ast/Control.qll +++ b/ql/src/codeql_ruby/ast/Control.qll @@ -145,7 +145,7 @@ class IfModifierExpr extends ConditionalExpr, @if_modifier { final override string getAPrimaryQlClass() { result = "IfModifierExpr" } /** - * Gets the expression that is conditionally evaluated. In the following + * Gets the statement that is conditionally evaluated. In the following * example, the result is the `Expr` for `foo`. * ```rb * foo if bar @@ -166,7 +166,7 @@ class UnlessModifierExpr extends ConditionalExpr, @unless_modifier { final override string getAPrimaryQlClass() { result = "UnlessModifierExpr" } /** - * Gets the expression that is conditionally evaluated. In the following + * Gets the statement that is conditionally evaluated. In the following * example, the result is the `Expr` for `foo`. * ```rb * foo unless bar