]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/style/safety/lib-guarantees.md
Changed issue number to 36105
[rust.git] / src / doc / style / safety / lib-guarantees.md
index aa87223383a10d0f38fe4af7ece9ec96425f64f1..8ee64f1806a6937ae08c554f99eced0037ddabbd 100644 (file)
@@ -70,8 +70,8 @@ that all instances are valid utf-8:
 Providing library-level guarantees sometimes entails inconvenience (for static
 checks) or overhead (for dynamic checks). So it is sometimes desirable to allow
 clients to sidestep this checking, while promising to use the API in a way that
-still provides the guarantee. Such escape hatches should only be be introduced
-when there is a demonstrated need for them.
+still provides the guarantee. Such escape hatches should only be introduced when
+there is a demonstrated need for them.
 
 It should be trivial for clients to audit their use of the library for
 escape hatches.