about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Green <briangreenery@gmail.com>2016-05-09 14:28:42 -0700
committerBrian Green <briangreenery@gmail.com>2016-05-09 14:28:42 -0700
commit9d2c45d0e7c18542a0abbcc4ac582cc7dbe8b060 (patch)
tree0e8343e4781b053cd4462b676f49548f9efee129
parentfaca79fc332f62b339aee5bd994b00e52d9ac051 (diff)
downloadrust-9d2c45d0e7c18542a0abbcc4ac582cc7dbe8b060.tar.gz
rust-9d2c45d0e7c18542a0abbcc4ac582cc7dbe8b060.zip
doc: Fix tiny typo in vec-alloc.md
Change `fast an loose` to `fast and loose`.
-rw-r--r--src/doc/nomicon/vec-alloc.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/vec-alloc.md b/src/doc/nomicon/vec-alloc.md
index c2ae1a4eb6d..bc60a577bd3 100644
--- a/src/doc/nomicon/vec-alloc.md
+++ b/src/doc/nomicon/vec-alloc.md
@@ -150,7 +150,7 @@ LLVM needs to work with different languages' semantics and custom allocators,
 it can't really intimately understand allocation. Instead, the main idea behind
 allocation is "doesn't overlap with other stuff". That is, heap allocations,
 stack allocations, and globals don't randomly overlap. Yep, it's about alias
-analysis. As such, Rust can technically play a bit fast an loose with the notion of
+analysis. As such, Rust can technically play a bit fast and loose with the notion of
 an allocation as long as it's *consistent*.
 
 Getting back to the empty allocation case, there are a couple of places where