about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-07-27 14:59:27 +0000
committerbors <bors@rust-lang.org>2015-07-27 14:59:27 +0000
commitdc6e3bbb754c1215a4b0c19b345a74733a966715 (patch)
tree93410b835197bc7aee7bf793f417a186adc619d6 /src
parenteefd6b2c12c8257c85f2121d7f5a3694b192e755 (diff)
parent6e377fe5f3495bfc3ed9872e7a43ab339e8d6b6c (diff)
downloadrust-dc6e3bbb754c1215a4b0c19b345a74733a966715.tar.gz
rust-dc6e3bbb754c1215a4b0c19b345a74733a966715.zip
Auto merge of #27317 - midinastasurazz:patch-1, r=Gankro
r? @steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/choosing-your-guarantees.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/choosing-your-guarantees.md b/src/doc/trpl/choosing-your-guarantees.md
index db28ce6f428..1d3c76ce231 100644
--- a/src/doc/trpl/choosing-your-guarantees.md
+++ b/src/doc/trpl/choosing-your-guarantees.md
@@ -81,7 +81,7 @@ The main guarantee provided here is that the data will not be destroyed until al
 are out of scope.
 
 This should be used when we wish to dynamically allocate and share some data (read-only) between
-various portions of yur program, where it is not certain which portion will finish using the pointer
+various portions of your program, where it is not certain which portion will finish using the pointer
 last. It's a viable alternative to `&T` when `&T` is either impossible to statically check for
 correctness, or creates extremely unergonomic code where the programmer does not wish to spend the
 development cost of working with.