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.
2 parents 8a4fb9b + 72b95ed commit da5c7c6Copy full SHA for da5c7c6
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
3
name = "url"
4
-version = "1.2.1"
+version = "1.2.2"
5
authors = ["The rust-url developers"]
6
7
description = "URL library for Rust, based on the WHATWG URL Standard"
src/lib.rs
@@ -762,7 +762,7 @@ impl Url {
762
/// url.query_pairs_mut()
763
/// .clear()
764
/// .append_pair("foo", "bar & baz")
765
- /// .append_pair("saisons", "Été+hiver");
+ /// .append_pair("saisons", "\u{00C9}t\u{00E9}+hiver");
766
/// assert_eq!(url.query(), Some("foo=bar+%26+baz&saisons=%C3%89t%C3%A9%2Bhiver"));
767
/// assert_eq!(url.as_str(),
768
/// "https://example.net/?foo=bar+%26+baz&saisons=%C3%89t%C3%A9%2Bhiver#nav");
0 commit comments