about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorHenning Kowalk <Henning-K@users.noreply.github.com>2017-02-09 01:18:50 +0100
committerGitHub <noreply@github.com>2017-02-09 01:18:50 +0100
commit8251a2d73f077d3358ea88dbb6b7971a57f72d40 (patch)
tree3f50dbdef806f5496564697c95a30d7a43055156 /src/libstd
parent51ef003deaf2ac82edeeb03a98630330b069817a (diff)
downloadrust-8251a2d73f077d3358ea88dbb6b7971a57f72d40.tar.gz
rust-8251a2d73f077d3358ea88dbb6b7971a57f72d40.zip
Fix missing article.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs
index 4fae9fcb51c..8884d0688b8 100644
--- a/src/libstd/collections/mod.rs
+++ b/src/libstd/collections/mod.rs
@@ -68,7 +68,7 @@
 //! * You want to find the largest or smallest key that is smaller or larger
 //!   than something.
 //! * You want to be able to get all of the entries in order on-demand.
-//! * You want map sorted by its keys.
+//! * You want a map sorted by its keys.
 //!
 //! ### Use the `Set` variant of any of these `Map`s when:
 //! * You just want to remember which keys you've seen.