about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-11-08 15:56:03 +0000
committerbors <bors@rust-lang.org>2015-11-08 15:56:03 +0000
commitf5633df9133cddffbbbf8942841db83810aec835 (patch)
tree80bb91db62255914a72663583406b9ef0711382c /src
parent01fc81f249cf8d81bbb5f1d6675bfb14fe20afdd (diff)
parent8a41d1292fa5e16e96b20517e943072da0699817 (diff)
downloadrust-f5633df9133cddffbbbf8942841db83810aec835.tar.gz
rust-f5633df9133cddffbbbf8942841db83810aec835.zip
Auto merge of #29692 - jwworth:pull-request/fix-typo, r=apasel422
Fixes the double word 'be'.
Diffstat (limited to 'src')
-rw-r--r--src/doc/style/safety/lib-guarantees.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/style/safety/lib-guarantees.md b/src/doc/style/safety/lib-guarantees.md
index aa87223383a..8ee64f1806a 100644
--- a/src/doc/style/safety/lib-guarantees.md
+++ b/src/doc/style/safety/lib-guarantees.md
@@ -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.