about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-01-28 14:13:00 +0000
committerbors <bors@rust-lang.org>2017-01-28 14:13:00 +0000
commitc81c1d6a41babf7e34120625727211cad7b40b87 (patch)
tree6b1b8a3704a8eb0aeaed207ea7d830425d665401
parent010c3e25c453d0217b114aa125a956cd99f60c88 (diff)
parent15411fb0fafc65719ea8ce0f1a479a5df19a090a (diff)
downloadrust-c81c1d6a41babf7e34120625727211cad7b40b87.tar.gz
rust-c81c1d6a41babf7e34120625727211cad7b40b87.zip
Auto merge of #39360 - osa1:typos, r=GuillaumeGomez
Fix typos in libsyntax/tokenstream.rs
-rw-r--r--src/libsyntax/tokenstream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/tokenstream.rs b/src/libsyntax/tokenstream.rs
index f29a168e6df..86b0fcebeb2 100644
--- a/src/libsyntax/tokenstream.rs
+++ b/src/libsyntax/tokenstream.rs
@@ -17,7 +17,7 @@
 //! expansion).
 //!
 //! ## Ownership
-//! TokenStreams are persistant data structures construced as ropes with reference
+//! TokenStreams are persistent data structures constructed as ropes with reference
 //! counted-children. In general, this means that calling an operation on a TokenStream
 //! (such as `slice`) produces an entirely new TokenStream from the borrowed reference to
 //! the original. This essentially coerces TokenStreams into 'views' of their subparts,