diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-03-25 00:22:23 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-03-25 00:22:23 -0400 |
| commit | e8bf0a4a49405cfde21910af889d626fbdd5bd52 (patch) | |
| tree | 67cef21ad0bf834e4f44a7cc9d48c3abfe2aab13 | |
| parent | 38f39ac540d2a8b42c650e3aae9eaa715d47c554 (diff) | |
| download | rust-e8bf0a4a49405cfde21910af889d626fbdd5bd52.tar.gz rust-e8bf0a4a49405cfde21910af889d626fbdd5bd52.zip | |
trie: improve docstring
| -rw-r--r-- | src/libcore/trie.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/trie.rs b/src/libcore/trie.rs index 5921ae5b3f5..012e0055674 100644 --- a/src/libcore/trie.rs +++ b/src/libcore/trie.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! A radix trie for storing integers in sorted order +//! An ordered map and set for integer keys implemented as a radix trie use prelude::*; |
