Skip to content

Commit 368ce69

Browse files
committed
Fix qldoc formatting
1 parent 9df8edc commit 368ce69

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ruby/ql/lib/codeql/ruby/frameworks/ActiveSupport.qll

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)