about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-09-29 08:12:45 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-09-29 08:12:45 -0700
commit00009f97898c0c97af8dfd715d2b460883586817 (patch)
treef9f0fee8b80751662bffcd8e139ea500df1f86c1
parentbb84afeba16fa1b5c3af7d5d5c03c27b1a369306 (diff)
parent8a561266b129f86380b28950e1ce98f0fe319b03 (diff)
rollup merge of #17565 : akavel/patch-1
-rw-r--r--src/librustrt/unwind.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustrt/unwind.rs b/src/librustrt/unwind.rs
index 034ed470c97..c571217268d 100644
--- a/src/librustrt/unwind.rs
+++ b/src/librustrt/unwind.rs
@@ -37,11 +37,11 @@
 //! In the cleanup phase, personality routines invoke cleanup code associated
 //! with their stack frames (i.e. destructors).  Once stack has been unwound down
 //! to the handler frame level, unwinding stops and the last personality routine
-//! transfers control to its' catch block.
+//! transfers control to its catch block.
 //!
 //! ## Frame unwind info registration
 //!
-//! Each module has its' own frame unwind info section (usually ".eh_frame"), and
+//! Each module has its own frame unwind info section (usually ".eh_frame"), and
 //! unwinder needs to know about all of them in order for unwinding to be able to
 //! cross module boundaries.
 //!