about summary refs log tree commit diff
path: root/src/libstd/arena.rs
diff options
context:
space:
mode:
authorSean Moon <ssamoon@ucla.edu>2013-05-09 02:34:47 +0900
committerSean Moon <ssamoon@ucla.edu>2013-05-09 02:34:47 +0900
commitbd4ee7c7d2f00e8c41824fac7e5d155dff40c25f (patch)
tree6b48543d67f951fd3537a8624f2f203c5d910496 /src/libstd/arena.rs
parent37becd887e74383cafd2930a87dfbb8f19c5af15 (diff)
downloadrust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.tar.gz
rust-bd4ee7c7d2f00e8c41824fac7e5d155dff40c25f.zip
Fix typos
Diffstat (limited to 'src/libstd/arena.rs')
-rw-r--r--src/libstd/arena.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/arena.rs b/src/libstd/arena.rs
index da882d53fcf..3a55d3e337c 100644
--- a/src/libstd/arena.rs
+++ b/src/libstd/arena.rs
@@ -20,7 +20,7 @@
 // calling the destructors on them.
 // One subtle point that needs to be addressed is how to handle
 // failures while running the user provided initializer function. It
-// is important to not run the destructor on uninitalized objects, but
+// is important to not run the destructor on uninitialized objects, but
 // how to detect them is somewhat subtle. Since alloc() can be invoked
 // recursively, it is not sufficient to simply exclude the most recent
 // object. To solve this without requiring extra space, we use the low