Skip to content

Commit 0311660

Browse files
authored
Spaces instead of tabs
1 parent 6c24e0a commit 0311660

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UPGRADING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ versions.
4141
```
4242

4343
After upgrading:
44-
44+
4545
```rust
4646
let url = Url::parse("http://github.com:80").unwrap();
4747
let stream = TcpStream::connect(url.socket_addrs(|| match url.scheme() {
@@ -96,7 +96,7 @@ versions.
9696

9797
```rust
9898
/// https://url.spec.whatwg.org/#query-state
99-
const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>');
99+
const QUERY: &AsciiSet = &CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>');
100100

101101
percent_encoding::utf8_percent_encode(value, QUERY);
102102
```

0 commit comments

Comments
 (0)