From 635486b22178d8ebe2704b05a200ac14b7d1dbb0 Mon Sep 17 00:00:00 2001 From: Yauheni Dakuka Date: Wed, 22 Nov 2023 21:11:12 +0400 Subject: [PATCH] Fix inaccuracy in the Keyword Arguments Order --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 0e5b8963..32fb2063 100644 --- a/README.adoc +++ b/README.adoc @@ -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] ----