We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184267c commit 6e377feCopy full SHA for 6e377fe
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
81
are out of scope.
82
83
This should be used when we wish to dynamically allocate and share some data (read-only) between
84
-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
85
last. It's a viable alternative to `&T` when `&T` is either impossible to statically check for
86
correctness, or creates extremely unergonomic code where the programmer does not wish to spend the
87
development cost of working with.
0 commit comments