Skip to content

Commit afa81d6

Browse files
authored
Update README.md
1 parent ef1c261 commit afa81d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ immutable_struct_ex is yet another immutable struct. What makes immutable_struct
1313
## Other Immutable Structs
1414

1515
```ruby
16-
# Two steps...
16+
# How OTHER immutable structs declare and instantiate, two steps...
1717
some_immutable_struct = SomeImmutableStruct.new(:first, :last, :phone)
1818
some_immutable_struct.new(first: 'John', last: 'Doe', phone: '(201) 230-7281')
1919

20-
# Chaining...
20+
# How OTHER immutable structs chain...
2121
some_immutable_struct = SomeImmutableStruct.new(:first, :last, :phone)
2222
.new(first: 'John', last: 'Doe', phone: '(201) 230-7281')
2323
```

0 commit comments

Comments
 (0)