Klabnik nit-picks ;)

This commit is contained in:
Ticki 2015-07-21 22:09:29 +02:00
parent 48870d4f05
commit cf1e078bf6

View File

@ -103,7 +103,7 @@ borrow checker. Adding `unsafe` to some random Rust code doesnt change its
semantics, it wont just start accepting anything. But it will let you write semantics, it wont just start accepting anything. But it will let you write
things that _do_ break some of the rules. 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 (non-Rust) interfaces. You're encouraged to write a safe, native Rust interface
around the methods provided by the library. around the methods provided by the library.