Skip to content

Commit 558f977

Browse files
author
Christian Aistleitner
committed
Fix documentation marker for QUERY AsciiSet
1 parent 9f79b85 commit 558f977

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

url/src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub const PATH_SEGMENT: &AsciiSet = &PATH.add(b'/').add(b'%');
4141
// so it needs to be additionally escaped in that case.
4242
pub const SPECIAL_PATH_SEGMENT: &AsciiSet = &PATH_SEGMENT.add(b'\\');
4343

44-
// https://url.spec.whatwg.org/#query-state
44+
/// https://url.spec.whatwg.org/#query-state
4545
pub const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>');
4646
pub const SPECIAL_QUERY: &AsciiSet = &QUERY.add(b'\'');
4747

0 commit comments

Comments
 (0)