Skip to content

Commit 0c97b36

Browse files
authored
Add missing spaces (#928)
1 parent ce258a1 commit 0c97b36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,17 +333,17 @@ E.g. if users are guaranteed to have an address and addresses are guaranteed to
333333
# bad
334334
user&.address&.zip
335335
336-
#good
336+
# good
337337
user && user.address.zip
338338
----
339339

340340
If such a change introduces excessive conditional logic, consider other approaches, such as delegation:
341341
[source, ruby]
342342
----
343-
#bad
343+
# bad
344344
user && user.address && user.address.zip
345345
346-
#good
346+
# good
347347
class User
348348
def zip
349349
address&.zip

0 commit comments

Comments
 (0)