Skip to content

Commit

Permalink
Fix inaccuracy in the Keyword Arguments Order
Browse files Browse the repository at this point in the history
  • Loading branch information
ydakuka committed Nov 22, 2023
1 parent 3bea60a commit 635486b
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 @@ -3115,7 +3115,7 @@ some_method('w', 'x', 'y', 'z') # => 'y, z, w, x'

=== Keyword Arguments Order

Put required keyword arguments before optional keyword arguments. Otherwise, it's much harder to spot optional arguments there, if they're hidden somewhere in the middle.
Put required keyword arguments before optional keyword arguments. Otherwise, it's much harder to spot optional keyword arguments there, if they're hidden somewhere in the middle.

[source,ruby]
----
Expand Down

0 comments on commit 635486b

Please sign in to comment.