about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTicki <Ticki@users.noreply.github.com>2015-07-21 22:09:29 +0200
committerTicki <Ticki@users.noreply.github.com>2015-07-21 22:09:29 +0200
commitcf1e078bf65899f466ebe07d29732979a845a718 (patch)
treee977e3759632ccd17718cdc6ec67dd6143f80ddf /src
parent48870d4f05177aa8e4d8439b71f39283f1880327 (diff)
downloadrust-cf1e078bf65899f466ebe07d29732979a845a718.tar.gz
rust-cf1e078bf65899f466ebe07d29732979a845a718.zip
Klabnik nit-picks ;)
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/unsafe.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/unsafe.md b/src/doc/trpl/unsafe.md
index 897795e9153..1b223365bd6 100644
--- a/src/doc/trpl/unsafe.md
+++ b/src/doc/trpl/unsafe.md
@@ -103,7 +103,7 @@ borrow checker’. Adding `unsafe` to some random Rust code doesn’t change its
 semantics, it won’t just start accepting anything. But it will let you write
 things that _do_ break some of the rules.
 
-You will also encounter the 'unsafe' keyword when writing bindings to foreign
+You will also encounter the `unsafe` keyword when writing bindings to foreign
 (non-Rust) interfaces. You're encouraged to write a safe, native Rust interface
 around the methods provided by the library.