We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1c261 commit afa81d6Copy full SHA for afa81d6
README.md
@@ -13,11 +13,11 @@ immutable_struct_ex is yet another immutable struct. What makes immutable_struct
13
## Other Immutable Structs
14
15
```ruby
16
-# Two steps...
+# How OTHER immutable structs declare and instantiate, two steps...
17
some_immutable_struct = SomeImmutableStruct.new(:first, :last, :phone)
18
some_immutable_struct.new(first: 'John', last: 'Doe', phone: '(201) 230-7281')
19
20
-# Chaining...
+# How OTHER immutable structs chain...
21
22
.new(first: 'John', last: 'Doe', phone: '(201) 230-7281')
23
```
0 commit comments