From 8a561266b129f86380b28950e1ce98f0fe319b03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Czapli=C5=84ski?= Date: Fri, 26 Sep 2014 19:51:33 +0200 Subject: [PATCH] tiny linguistic correction in docs: s/its'/its/ See e.g.: http://dictionary.reference.com/browse/its --- src/librustrt/unwind.rs | 4 ++-- 1 file 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. //!