Skip to content

Commit da5c7c6

Browse files
author
bors-servo
authored
Auto merge of #233 - nox:ice, r=SimonSapin
Work around an unfortunate ICE rust-lang/rust#37274 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-url/233) <!-- Reviewable:end -->
2 parents 8a4fb9b + 72b95ed commit da5c7c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "url"
4-
version = "1.2.1"
4+
version = "1.2.2"
55
authors = ["The rust-url developers"]
66

77
description = "URL library for Rust, based on the WHATWG URL Standard"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ impl Url {
762762
/// url.query_pairs_mut()
763763
/// .clear()
764764
/// .append_pair("foo", "bar & baz")
765-
/// .append_pair("saisons", "Été+hiver");
765+
/// .append_pair("saisons", "\u{00C9}t\u{00E9}+hiver");
766766
/// assert_eq!(url.query(), Some("foo=bar+%26+baz&saisons=%C3%89t%C3%A9%2Bhiver"));
767767
/// assert_eq!(url.as_str(),
768768
/// "https://example.net/?foo=bar+%26+baz&saisons=%C3%89t%C3%A9%2Bhiver#nav");

0 commit comments

Comments
 (0)