]> git.lizzy.rs Git - rust.git/blobdiff - src/librustdoc/html/escape.rs
Rollup merge of #69582 - RalfJung:vec-parts, r=Centril
[rust.git] / src / librustdoc / html / escape.rs
index 182a2dd2e9c9f95858ff133ca0e63b25c6b97963..03660c32654bec0c72988b65f79851b9893cd4a8 100644 (file)
@@ -19,14 +19,14 @@ fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
         for (i, ch) in s.bytes().enumerate() {
             match ch as char {
                 '<' | '>' | '&' | '\'' | '"' => {
-                    fmt.write_str(&pile_o_bits[last.. i])?;
+                    fmt.write_str(&pile_o_bits[last..i])?;
                     let s = match ch as char {
                         '>' => "&gt;",
                         '<' => "&lt;",
                         '&' => "&amp;",
                         '\'' => "&#39;",
                         '"' => "&quot;",
-                        _ => unreachable!()
+                        _ => unreachable!(),
                     };
                     fmt.write_str(s)?;
                     last = i + 1;