about summary refs log tree commit diff
path: root/src/libsyntax/tokenstream.rs
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2017-01-28 17:00:43 +0300
committerÖmer Sinan Ağacan <omeragacan@gmail.com>2017-01-28 17:00:43 +0300
commit15411fb0fafc65719ea8ce0f1a479a5df19a090a (patch)
tree4f68a2662d3c227b462dc53eb26a0945c454e1b8 /src/libsyntax/tokenstream.rs
parent9f705575452e04ce2d8cb88e5f5accdc4d54e650 (diff)
downloadrust-15411fb0fafc65719ea8ce0f1a479a5df19a090a.tar.gz
rust-15411fb0fafc65719ea8ce0f1a479a5df19a090a.zip
Fix typos in libsyntax/tokenstream.rs
Diffstat (limited to 'src/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 ab5dc8181e0..0ca0538c03a 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,