Skip to content

Commit

Permalink
Auto merge of servo#499 - nicholasbishop:patch-1, r=SimonSapin
Browse files Browse the repository at this point in the history
Fix typo: charcter -> character

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-url/499)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo authored May 13, 2019
2 parents 89dc0b7 + dc0b0a2 commit 87dd8df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions percent_encoding/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// except according to those terms.

//! URLs use special chacters to indicate the parts of the request. For example, a forward slash
//! indicates a path. In order for that charcter to exist outside of a path separator, that
//! charcter would need to be encoded.
//! indicates a path. In order for that character to exist outside of a path separator, that
//! character would need to be encoded.
//!
//! Percent encoding replaces reserved charcters with the `%` escape charcter followed by hexidecimal
//! ASCII representaton. For non-ASCII charcters that are percent encoded, a UTF-8 byte sequence
//! Percent encoding replaces reserved characters with the `%` escape character followed by hexidecimal
//! ASCII representaton. For non-ASCII character that are percent encoded, a UTF-8 byte sequence
//! becomes percent encoded. A simple example can be seen when the space literal is replaced with
//! `%20`.
//!
Expand Down

0 comments on commit 87dd8df

Please sign in to comment.