File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
// except according to those terms.
8
8
9
9
//! 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.
12
12
//!
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
15
15
//! becomes percent encoded. A simple example can be seen when the space literal is replaced with
16
16
//! `%20`.
17
17
//!
You can’t perform that action at this time.
0 commit comments