Skip to content

Commit 34cebd6

Browse files
committed
Fix error in Keyword Arguments Order
1 parent eb09cfa commit 34cebd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3104,7 +3104,7 @@ def some_method(foo: false, bar:, baz: 10)
31043104
end
31053105
31063106
# good
3107-
def some_method(foo:, bar: false, baz: 10)
3107+
def some_method(bar:, foo: false, baz: 10)
31083108
# body omitted
31093109
end
31103110
----

0 commit comments

Comments
 (0)