Skip to content

Commit bb8bcd4

Browse files
committed
fix typo
1 parent 24916f8 commit bb8bcd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ruby/ql/lib/codeql/ruby/Concepts.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ class CodeExecution extends DataFlow::Node instanceof CodeExecution::Range {
702702
/** Gets the argument that specifies the code to be executed. */
703703
DataFlow::Node getCode() { result = super.getCode() }
704704

705-
/** Holds if this execution runs arbitary code, as opposed to some restricted subset. E.g. `Object.send` will only run any method on an object. */
705+
/** Holds if this execution runs arbitrary code, as opposed to some restricted subset. E.g. `Object.send` will only run any method on an object. */
706706
predicate runsArbitraryCode() { super.runsArbitraryCode() }
707707
}
708708

@@ -718,7 +718,7 @@ module CodeExecution {
718718
/** Gets the argument that specifies the code to be executed. */
719719
abstract DataFlow::Node getCode();
720720

721-
/** Holds if this execution runs arbitary code, as opposed to some restricted subset. E.g. `Object.send` will only run any method on an object. */
721+
/** Holds if this execution runs arbitrary code, as opposed to some restricted subset. E.g. `Object.send` will only run any method on an object. */
722722
predicate runsArbitraryCode() { any() }
723723
}
724724
}

0 commit comments

Comments
 (0)