Commit 646b1441 authored by Łukasz Magiera's avatar Łukasz Magiera

misc: Fix a few typos

License: MIT
Signed-off-by: default avatarŁukasz Magiera <magik6k@gmail.com>
parent 8b65fc5e
...@@ -95,9 +95,9 @@ func (pinType) Indirect() PinLsOption { ...@@ -95,9 +95,9 @@ func (pinType) Indirect() PinLsOption {
// Recursive is an option for Pin.Add which specifies whether to pin an entire // Recursive is an option for Pin.Add which specifies whether to pin an entire
// object tree or just one object. Default: true // object tree or just one object. Default: true
func (pinOpts) Recursive(recucsive bool) PinAddOption { func (pinOpts) Recursive(recursive bool) PinAddOption {
return func(settings *PinAddSettings) error { return func(settings *PinAddSettings) error {
settings.Recursive = recucsive settings.Recursive = recursive
return nil return nil
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment