Skip to content

Commit 4fd553d

Browse files
authored
Update params.md
1 parent 9194ede commit 4fd553d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/client-dsl/params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The param declaration has several options providing a default value, expected ty
99
Examples:
1010

1111
```ruby
12-
param :foo # declares that we must be provided with a parameter foo when the component is instantiated or re-rerendered.
12+
param :foo # declares that we must provide a parameter foo when the component is instantiated or re-rerendered.
1313
param :foo => "some default" # declares that foo is optional, and if not present the value "some default" will be used.
1414
param foo: "some default" # same as above using ruby 1.9 JSON style syntax
1515
param :foo, default: "some default" # same as above but uses explicit default key

0 commit comments

Comments
 (0)