Skip to content

Commit 0839b5e

Browse files
author
Robert Mosolgo
authored
Merge pull request #3130 from dkassen/patch-2
fix variable name in code snippet example
2 parents 54fcf44 + 071a2b8 commit 0839b5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/type_definitions/field_extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ In this case, `{limit: 20}` will be passed as `options:` to `#initialize` and `o
9696
For example, options can be used for modifying execution:
9797

9898
```ruby
99-
def after_resolve(value:, **rest)
99+
def after_resolve(value:, **options)
100100
# Apply the limit from the options
101101
value.limit(options[:limit])
102102
end

0 commit comments

Comments
 (0)