Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change: Adjust gix::dirwalk::Options::{X,set_X} parameter names
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`.
- Loading branch information