]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_data_structures/thin_vec.rs
Various minor/cosmetic improvements to code
[rust.git] / src / librustc_data_structures / thin_vec.rs
index 546686b46b8db4c92f2474b4f64ee354938cbe5a..5b7ea161b289778a2cec70770add3b33594ae7c3 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-/// A vector type optimized for cases where this size is usually 0 (c.f. `SmallVector`).
+/// A vector type optimized for cases where this size is usually 0 (cf. `SmallVector`).
 /// The `Option<Box<..>>` wrapping allows us to represent a zero sized vector with `None`,
 /// which uses only a single (null) pointer.
 #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]