You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adjusts the names of parameters to `X` and `set_X` methods of
`gix::dirwalk::Options` (where `X` is an option name) to use a
systematic naming convention:
- For the same option `X`, the `X` and `set_X` methods now always
have the same name of the parameter that specifies a value for an
option.
- Options whose type is `bool` are named `toggle`, in keeping with
the prevailing convention in this code.
- Options of `Option` type are named `value` (this required no
changes).
- Options of a non-`Option` type `*Mode` -- currently this is just
`EmissionMode` -- are named `mode`.
0 commit comments