about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrik Sverdrup <root@localhost>2015-05-31 22:35:34 +0200
committerUlrik Sverdrup <root@localhost>2015-05-31 22:35:59 +0200
commit6cb061721cd044f15f87fb65102f19b70601e179 (patch)
treed2230807249cbf100624f161622a6a7c5804a354
parentee1ba33c4c679e679b0fd95aaf7145e7ebc275d4 (diff)
downloadrust-6cb061721cd044f15f87fb65102f19b70601e179.tar.gz
rust-6cb061721cd044f15f87fb65102f19b70601e179.zip
trpl: Fix typo in Raw Pointers chapter
-rw-r--r--src/doc/trpl/raw-pointers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/raw-pointers.md b/src/doc/trpl/raw-pointers.md
index 4a37af3c227..0f189adf40a 100644
--- a/src/doc/trpl/raw-pointers.md
+++ b/src/doc/trpl/raw-pointers.md
@@ -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