From d69a1731f9d3e29c46c3384c4bf98eaa3a44fc12 Mon Sep 17 00:00:00 2001 From: Arthur Baars Date: Mon, 15 Feb 2021 12:53:13 +0100 Subject: [PATCH] Fix QL doc --- ql/src/codeql_ruby/ast/Statement.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ql/src/codeql_ruby/ast/Statement.qll b/ql/src/codeql_ruby/ast/Statement.qll index 8e52135a3ba..e30f0c15fd7 100644 --- a/ql/src/codeql_ruby/ast/Statement.qll +++ b/ql/src/codeql_ruby/ast/Statement.qll @@ -83,8 +83,8 @@ class UndefStmt extends Stmt, @undef { * An `alias` statement. For example: * ```rb * - alias alias_name method_name - * - undef foo :method_name - * - undef bar :"method_#{ name }" + * - alias foo :method_name + * - alias bar :"method_#{ name }" * ``` */ class AliasStmt extends Stmt, @alias {