Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/wiki/Ascii-Art.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This is the format onefetch uses for it's ASCII art files.
This is the format onefetch uses for its ASCII art files.

#### Here's an example:

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ CSharp: # required, this will be the name of the enum variant for the language a

_**NOTE**: An additional field, `line_types` can also be set on a language's attributes. It has been excluded because_
_it is not necessary for the majority of languages. By default, only a language's lines of code are counted, but this_
_field can be used to count other lines, too. For example, `line_types: [code, comments]`. This is useful in langauges_
_field can be used to count other lines, too. For example, `line_types: [code, comments]`. This is useful in languages_
_like Markdown, where the significant lines are mostly comments. A list of available fields to be used can be found in_
_[tokei's documentation](https://docs.rs/tokei/latest/tokei/struct.Language.html#fields)._

Expand Down
2 changes: 1 addition & 1 deletion ascii/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ fn token<R>(s: &str, predicate: impl FnOnce(char) -> Option<R>) -> ParseResult<R

// Parsers

/// Parses a color indiator of the format `{n}` where `n` is a digit.
/// Parses a color indicator of the format `{n}` where `n` is a digit.
fn color_token(s: &str) -> ParseResult<Token> {
let (s, _) = token(s, succeed_when(|c| c == '{'))?;
let (s, color_index) = token(s, |c| c.to_digit(10))?;
Expand Down
2 changes: 1 addition & 1 deletion image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![crates.io](https://img.shields.io/crates/v/onefetch-image)](https://crates.io/crates/onefetch-image)
[![docs.rs](https://img.shields.io/docsrs/onefetch-image)](https://docs.rs/onefetch-image)

Provides the primary interface to diplay images to the terminal.
Provides the primary interface to display images to the terminal.

Protocols supported:

Expand Down
2 changes: 1 addition & 1 deletion src/info/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ mod test {
}

#[test]
fn test_display_project_info_when_one_branche_one_tag() {
fn test_display_project_info_when_one_branch_one_tag() {
let project_info = ProjectInfo {
repo_name: "onefetch".to_string(),
number_of_branches: 1,
Expand Down