Improve config::WriteMode comments

- Fix typo
- Switch comments verbs to the the 3rd person to offer a better coherence among options
This commit is contained in:
Sébastien Santoro 2016-11-11 05:27:18 +01:00
parent ea8fa05edf
commit 0dffec8a5c

View file

@ -154,19 +154,19 @@ configuration_option_enum! { ReportTactic:
}
configuration_option_enum! { WriteMode:
// Backsup the original file and overwrites the orignal.
// Backs the original file up and overwrites the original.
Replace,
// Overwrites original file without backup.
Overwrite,
// Write the output to stdout.
// Writes the output to stdout.
Display,
// Write the diff to stdout.
// Writes the diff to stdout.
Diff,
// Display how much of the input file was processed
// Displays how much of the input file was processed
Coverage,
// Unfancy stdout
Plain,
// Output a checkstyle XML file.
// Outputs a checkstyle XML file.
Checkstyle,
}