diff options
| author | athulappadan <a4athulappadan@gmail.com> | 2016-09-13 10:13:52 +0530 |
|---|---|---|
| committer | athulappadan <a4athulappadan@gmail.com> | 2016-09-13 10:13:52 +0530 |
| commit | 5798003438469313c0616270b8b285d9afbb4730 (patch) | |
| tree | 2c62ae4550b1f3fca49f04e75df999d60fe2cb26 /src | |
| parent | 41881e85bd832127f2a6eee5821eaae353dea281 (diff) | |
| download | rust-5798003438469313c0616270b8b285d9afbb4730.tar.gz rust-5798003438469313c0616270b8b285d9afbb4730.zip | |
Doc correction: btree
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcollections/btree/set.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/btree/set.rs b/src/libcollections/btree/set.rs index 49da3aa480c..fc2a7f82547 100644 --- a/src/libcollections/btree/set.rs +++ b/src/libcollections/btree/set.rs @@ -674,7 +674,7 @@ impl<'a, T: 'a + Ord + Copy> Extend<&'a T> for BTreeSet<T> { #[stable(feature = "rust1", since = "1.0.0")] impl<T: Ord> Default for BTreeSet<T> { - /// Makes a empty `BTreeSet<T>` with a reasonable choice of B. + /// Makes an empty `BTreeSet<T>` with a reasonable choice of B. fn default() -> BTreeSet<T> { BTreeSet::new() } |
