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 {
119
119
}
120
120
121
121
/**
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).
124
124
*
125
- *Example:
125
+ * Example:
126
126
*
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
+ * ```
132
132
*
133
133
* There is value flow from elements corresponding to keys in the
134
134
* arguments (`:a` and `:b` in the example) to elements in
You can’t perform that action at this time.
0 commit comments