Skip to content

Commit 9d2c45d

Browse files
committed
doc: Fix tiny typo in vec-alloc.md
Change `fast an loose` to `fast and loose`.
1 parent faca79f commit 9d2c45d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/nomicon/vec-alloc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ LLVM needs to work with different languages' semantics and custom allocators,
150150
it can't really intimately understand allocation. Instead, the main idea behind
151151
allocation is "doesn't overlap with other stuff". That is, heap allocations,
152152
stack allocations, and globals don't randomly overlap. Yep, it's about alias
153-
analysis. As such, Rust can technically play a bit fast an loose with the notion of
153+
analysis. As such, Rust can technically play a bit fast and loose with the notion of
154154
an allocation as long as it's *consistent*.
155155

156156
Getting back to the empty allocation case, there are a couple of places where

0 commit comments

Comments
 (0)