From 031166022671707436173c818e28a426de48168c Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Mon, 2 Sep 2019 16:20:34 +0200 Subject: [PATCH] Spaces instead of tabs --- UPGRADING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADING.md b/UPGRADING.md index 2647f7ea2..a22197d08 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -41,7 +41,7 @@ versions. ``` After upgrading: - + ```rust let url = Url::parse("http://github.com:80").unwrap(); let stream = TcpStream::connect(url.socket_addrs(|| match url.scheme() { @@ -96,7 +96,7 @@ versions. ```rust /// https://url.spec.whatwg.org/#query-state - const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>'); + const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>'); percent_encoding::utf8_percent_encode(value, QUERY); ```