File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
ruby/ql/lib/codeql/ruby/frameworks Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -119,16 +119,16 @@ module ActiveSupport {
119119 }
120120
121121 /**
122- *A flow summary for `Hash#extract!`. This method removes the key/value pairs
123- *matching the given keys from the receiver and returns them (as a Hash).
122+ * A flow summary for `Hash#extract!`. This method removes the key/value pairs
123+ * matching the given keys from the receiver and returns them (as a Hash).
124124 *
125- *Example:
125+ * Example:
126126 *
127- *```rb
128- * hash = { a: 1, b: 2, c: 3, d: 4 }
129- * hash.extract!(:a, :b) # => {:a=>1, :b=>2}
130- * hash # => {:c=>3, :d=>4}
131- *```
127+ * ```rb
128+ * hash = { a: 1, b: 2, c: 3, d: 4 }
129+ * hash.extract!(:a, :b) # => {:a=>1, :b=>2}
130+ * hash # => {:c=>3, :d=>4}
131+ * ```
132132 *
133133 * There is value flow from elements corresponding to keys in the
134134 * arguments (`:a` and `:b` in the example) to elements in
You can’t perform that action at this time.
0 commit comments