fix: typo (#734)

This commit is contained in:
maru143 2021-03-11 21:55:45 +09:00 committed by GitHub
parent a5a8b6a66d
commit 2c60aab35c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ impl<'a> Cli<'a> {
"Sort languages based on column")
(@arg types: -t --type
+takes_value
"Filters output by language type, seperated by a comma. i.e. -t=Rust,Markdown")
"Filters output by language type, separated by a comma. i.e. -t=Rust,Markdown")
(@arg compact: -C --compact
"Do not print statistics about embedded languages.")
(@arg num_format_style: -n --("num-format")

View file

@ -65,7 +65,7 @@ impl Config {
/// Firstly it will attempt to find a config in the configuration directory
/// (see below), secondly from the home directory, `$HOME/`,
/// and thirdly from the current directory, `./`.
/// The current directory's configuration will take priority over the configuratio
/// The current directory's configuration will take priority over the configuration
/// directory.
///
/// |Platform | Value | Example |

View file

@ -167,7 +167,7 @@ impl SyntaxCounter {
}
/// Try to see if we can determine what a line is from examining the whole
/// line at once. Returns `true` if sucessful.
/// line at once. Returns `true` if successful.
pub(crate) fn can_perform_single_line_analysis(
&self,
line: &[u8],