summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-11-07 18:49:42 +0000
committerbors <bors@rust-lang.org>2015-11-07 18:49:42 +0000
commit43b5d5e0de1dbbe655160915cc9a7bb56a68d86c (patch)
tree7a6cf5b531e9fc14bce49319cbf6ed2d964a216a
parent86069e45fe8fc15bc6103ffde9b4371ce826df2c (diff)
parentac1917807834e3dd7a697aee85ab89a0164042e2 (diff)
downloadrust-43b5d5e0de1dbbe655160915cc9a7bb56a68d86c.tar.gz
rust-43b5d5e0de1dbbe655160915cc9a7bb56a68d86c.zip
Auto merge of #29678 - jwworth:pull-request/fix-typo, r=apasel422
Fixes the typo 'is is'.
-rw-r--r--src/doc/nomicon/lifetimes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/lifetimes.md b/src/doc/nomicon/lifetimes.md
index e48d5f852f0..e21207efdcf 100644
--- a/src/doc/nomicon/lifetimes.md
+++ b/src/doc/nomicon/lifetimes.md
@@ -193,7 +193,7 @@ println!("{}", x);
 }
 ```
 
-The problem here is is bit more subtle and interesting. We want Rust to
+The problem here is a bit more subtle and interesting. We want Rust to
 reject this program for the following reason: We have a live shared reference `x`
 to a descendant of `data` when we try to take a mutable reference to `data`
 to `push`. This would create an aliased mutable reference, which would