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 book/src/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The following global configuration options are supported:

### The `token` field

The required `token` field is your Github Peronal Authentical Token as a
The required `token` field is your Github Personal Authentical Token as a
string.

Example:
Expand Down
2 changes: 1 addition & 1 deletion book/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Please remove this text!
Here we've done two things:

1. Create a "spanned inline" comment that attaches our comment to a block of
lines. If we ommitted the leading newline, we would have a regular "inline"
lines. If we omitted the leading newline, we would have a regular "inline"
comment that attaches to the most immediately quoted line. Using spanned
inline comments can be useful when we want to be precise during review.
1. Snip the trailing text. We didn't have to do this, but it makes the example
Expand Down
2 changes: 1 addition & 1 deletion src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ fn parse_hunk_start(line: &str) -> Result<Option<(u64, u64)>> {
.context("Failed to parse hunk start right line")?;
// Note that for newly added files or deleted files, both sides
// of the line info might be zero. `saturating_*` operations must hence
// be used for the following substraction to be safe.
// be used for the following subtraction to be safe.

return Ok(Some((hunk_start_line_left, hunk_start_line_right)));
}
Expand Down
Loading