Skip to content

Fix typo: yur -> your #27317

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 27, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/doc/trpl/choosing-your-guarantees.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down