Skip to content

Commit dc0b0a2

Browse files
Fix typo: charcter -> character
1 parent 89dc0b7 commit dc0b0a2

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)