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.
2 parents eefd6b2 + 6e377fe commit dc6e3bbCopy full SHA for dc6e3bb
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