Skip to content

Commit

Permalink
Fix error in Keyword Arguments Order
Browse files Browse the repository at this point in the history
  • Loading branch information
ydakuka committed Oct 28, 2023
1 parent eb09cfa commit 34cebd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3104,7 +3104,7 @@ def some_method(foo: false, bar:, baz: 10)
end
# good
def some_method(foo:, bar: false, baz: 10)
def some_method(bar:, foo: false, baz: 10)
# body omitted
end
----
Expand Down

0 comments on commit 34cebd6

Please sign in to comment.