about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-23 23:46:05 -0700
committerbors <bors@rust-lang.org>2013-09-23 23:46:05 -0700
commit18e3bcd1ab051cf78188c88ca78d14afaa7a5b3a (patch)
treec7004423d31030c0019d843749e9402affa03baf
parentdf8231e134fbc3c5d121d48d12fa991949295711 (diff)
parent5500d86b457e1815941d4adb2d8bbc91f3c8c9b2 (diff)
downloadrust-18e3bcd1ab051cf78188c88ca78d14afaa7a5b3a.tar.gz
rust-18e3bcd1ab051cf78188c88ca78d14afaa7a5b3a.zip
auto merge of #9449 : dckc/rust/patch-1, r=alexcrichton
-rw-r--r--src/libstd/local_data.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/local_data.rs b/src/libstd/local_data.rs
index 89bdb57e2bd..2e7d5a1176c 100644
--- a/src/libstd/local_data.rs
+++ b/src/libstd/local_data.rs
@@ -72,7 +72,7 @@ impl<T: 'static> LocalData for T {}
 //
 // One of the most important operations is loaning a value via `get` to a
 // caller. In doing so, the slot that the TLS entry is occupying cannot be
-// invalidated because upon returning it's loan state must be updated. Currently
+// invalidated because upon returning its loan state must be updated. Currently
 // the TLS map is a vector, but this is possibly dangerous because the vector
 // can be reallocated/moved when new values are pushed onto it.
 //