about summary refs log tree commit diff
diff options
context:
space:
mode:
-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,