]> git.lizzy.rs Git - rust.git/commitdiff
trpl: Fix typo in Raw Pointers chapter
authorUlrik Sverdrup <root@localhost>
Sun, 31 May 2015 20:35:34 +0000 (22:35 +0200)
committerUlrik Sverdrup <root@localhost>
Sun, 31 May 2015 20:35:59 +0000 (22:35 +0200)
src/doc/trpl/raw-pointers.md

index 4a37af3c227827f779157a1d2f44dcb54df03126..0f189adf40abf77b070c8b352e8fef7b80e859c8 100644 (file)
@@ -77,7 +77,7 @@ For more operations on raw pointers, see [their API documentation][rawapi].
 # FFI
 
 Raw pointers are useful for FFI: Rust’s `*const T` and `*mut T` are similar to
-C’s `const T*` and `T*`, respectfully. For more about this use, consult the
+C’s `const T*` and `T*`, respectively. For more about this use, consult the
 [FFI chapter][ffi].
 
 [ffi]: ffi.html