Browse Source

Spaces instead of tabs

Simon Sapin 7 years ago
parent
commit
0311660226
1 changed files with 2 additions and 2 deletions
  1. 2 2
      UPGRADING.md

+ 2 - 2
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);
     ```