]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/trpl/while-loops.md
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / doc / trpl / while-loops.md
index a56c546b5516f1584f5c77f41b2fdded3924889c..0f5c3c64a4b17e1665b9b0a7d0941360e684785e 100644 (file)
@@ -2,7 +2,7 @@
 
 Rust also has a `while` loop. It looks like this:
 
-```{rust}
+```rust
 let mut x = 5; // mut x: i32
 let mut done = false; // mut done: bool