Skip to content

Commit 87dd8df

Browse files
author
bors-servo
authored
Auto merge of #499 - nicholasbishop:patch-1, r=SimonSapin
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 -->
2 parents 89dc0b7 + dc0b0a2 commit 87dd8df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

percent_encoding/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
// except according to those terms.
88

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

0 commit comments

Comments
 (0)