Skip to content

Commit

Permalink
Auto merge of #7672 - giraffate:fix_some_typos, r=alexcrichton
Browse files Browse the repository at this point in the history
Fix some typos in doc
  • Loading branch information
bors committed Dec 6, 2019
2 parents abba15f + fb5e51f commit 1072b35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doc/src/appendix/git-authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Windows uses Pageant for SSH authentication.
> **Note:** Cargo does not support git's shorthand SSH URLs like
> `git@example.com/user/repo.git`. Use a full SSH URL like
> `ssh://git@example.com/user/repo.git`.
>
> **Note:** SSH configuration files (like OpenSSH's `~/.ssh/config`) are not
> used by Cargo's built-in SSH library. More advanced requirements should use
> [`net.git-fetch-with-cli`].
Expand Down
2 changes: 1 addition & 1 deletion src/doc/src/guide/creating-a-new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ $ cargo build --release
`cargo build --release` puts the resulting binary in `target/release` instead of
`target/debug`.

Compiling in debug mode is the default for development-- compilation time is
Compiling in debug mode is the default for development. Compilation time is
shorter since the compiler doesn't do optimizations, but the code will run
slower. Release mode takes longer to compile, but the code will run faster.

0 comments on commit 1072b35

Please sign in to comment.