We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f79b85 commit 558f977Copy full SHA for 558f977
url/src/parser.rs
@@ -41,7 +41,7 @@ pub const PATH_SEGMENT: &AsciiSet = &PATH.add(b'/').add(b'%');
41
// so it needs to be additionally escaped in that case.
42
pub const SPECIAL_PATH_SEGMENT: &AsciiSet = &PATH_SEGMENT.add(b'\\');
43
44
-// https://url.spec.whatwg.org/#query-state
+/// https://url.spec.whatwg.org/#query-state
45
pub const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>');
46
pub const SPECIAL_QUERY: &AsciiSet = &QUERY.add(b'\'');
47
0 commit comments