about summary refs log tree commit diff
path: root/src/librustc_data_structures/accumulate_vec.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-08-17 13:23:20 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-08-17 13:23:20 -0700
commit4b5f330c706e115ce75667a650e7c15c429d3a20 (patch)
tree80bedaa7a3cfc5a41827c96717ef73d25bb297f6 /src/librustc_data_structures/accumulate_vec.rs
parent63477fdeceead5683dfa197c5450ffe1bee3ab04 (diff)
parent59ccba995de202fb9d9a8d795d2770fb2d199db0 (diff)
downloadrust-4b5f330c706e115ce75667a650e7c15c429d3a20.tar.gz
rust-4b5f330c706e115ce75667a650e7c15c429d3a20.zip
Merge remote-tracking branch 'origin/master' into gen
Diffstat (limited to 'src/librustc_data_structures/accumulate_vec.rs')
-rw-r--r--src/librustc_data_structures/accumulate_vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/accumulate_vec.rs b/src/librustc_data_structures/accumulate_vec.rs
index c03c2890ba3..52306de74cb 100644
--- a/src/librustc_data_structures/accumulate_vec.rs
+++ b/src/librustc_data_structures/accumulate_vec.rs
@@ -13,7 +13,7 @@
 //! Space for up to N elements is provided on the stack.  If more elements are collected, Vec is
 //! used to store the values on the heap.
 //!
-//! The N above is determined by Array's implementor, by way of an associatated constant.
+//! The N above is determined by Array's implementor, by way of an associated constant.
 
 use std::ops::{Deref, DerefMut};
 use std::iter::{self, IntoIterator, FromIterator};