Skip to content

Commit

Permalink
docs: Update SliceConcatExt docs for assoc types
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrik Sverdrup committed May 11, 2015
1 parent 12d50b2 commit aabdd8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/libcollections/slice.rs
Expand Up @@ -1002,7 +1002,7 @@ pub trait SliceConcatExt<T: ?Sized> {
/// The resulting type after concatenation
type Output;

/// Flattens a slice of `T` into a single value `U`.
/// Flattens a slice of `T` into a single value `Self::Output`.
///
/// # Examples
///
Expand All @@ -1012,7 +1012,8 @@ pub trait SliceConcatExt<T: ?Sized> {
#[stable(feature = "rust1", since = "1.0.0")]
fn concat(&self) -> Self::Output;

/// Flattens a slice of `T` into a single value `U`, placing a given separator between each.
/// Flattens a slice of `T` into a single value `Self::Output`, placing a given separator
/// between each.
///
/// # Examples
///
Expand Down

0 comments on commit aabdd8e

Please sign in to comment.