Skip to content

Commit

Permalink
Rollup merge of rust-lang#33524 - briangreenery:briangreenery-fast-an…
Browse files Browse the repository at this point in the history
…d-loose, r=steveklabnik

doc: Fix tiny typo in vec-alloc.md

Change `fast an loose` to `fast and loose`.
  • Loading branch information
steveklabnik committed May 10, 2016
2 parents dbc1133 + 9d2c45d commit efe519b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/nomicon/vec-alloc.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit efe519b

Please sign in to comment.