about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/doc/book/ffi.md2
-rw-r--r--src/libcollections/slice.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/ffi.md b/src/doc/book/ffi.md
index 41457ee67a5..50d4d0170fc 100644
--- a/src/doc/book/ffi.md
+++ b/src/doc/book/ffi.md
@@ -309,7 +309,7 @@ However it is often desired that the callback is targeted to a special
 Rust object. This could be the object that represents the wrapper for the
 respective C object.
 
-This can be achieved by passing an raw pointer to the object down to the
+This can be achieved by passing a raw pointer to the object down to the
 C library. The C library can then include the pointer to the Rust object in
 the notification. This will allow the callback to unsafely access the
 referenced Rust object.
diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs
index b5e66692205..805021516db 100644
--- a/src/libcollections/slice.rs
+++ b/src/libcollections/slice.rs
@@ -423,7 +423,7 @@ impl<T> [T] {
         core_slice::SliceExt::get_unchecked_mut(self, index)
     }
 
-    /// Returns an raw pointer to the slice's buffer.
+    /// Returns a raw pointer to the slice's buffer.
     ///
     /// The caller must ensure that the slice outlives the pointer this
     /// function returns, or else it will end up pointing to garbage.