about summary refs log tree commit diff
path: root/src/libstd/tuple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/tuple.rs')
-rw-r--r--src/libstd/tuple.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/tuple.rs b/src/libstd/tuple.rs
index 08aa979cf63..1e4de19c874 100644
--- a/src/libstd/tuple.rs
+++ b/src/libstd/tuple.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Operations on tuples
+//! A finite heterogeneous sequence, `(T, U, ..)`
 //!
 //! To access the _N_-th element of a tuple one can use `N` itself
 //! as a field of the tuple.