]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/unsafe.md
New upstream version 1.15.0+dfsg1
[rustc.git] / src / doc / book / unsafe.md
index 9cab586b82c4713d0ee73597876af5843733e945..a272afa70bb1be3013a98d89123d725007e1ec4b 100644 (file)
@@ -12,7 +12,7 @@ four contexts. The first one is to mark a function as unsafe:
 
 ```rust
 unsafe fn danger_will_robinson() {
-    // scary stuff
+    // Scary stuff...
 }
 ```
 
@@ -23,7 +23,7 @@ The second use of `unsafe` is an unsafe block:
 
 ```rust
 unsafe {
-    // scary stuff
+    // Scary stuff...
 }
 ```