Skip to content

Commit

Permalink
Fix a few typos in std/meta.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JinShil committed Jul 17, 2015
1 parent 8b51537 commit 29abd58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/meta.d
Expand Up @@ -31,7 +31,7 @@
module std.meta;

/**
* Creates a a sequence of zero or more aliases. This is most commonly
* Creates a sequence of zero or more aliases. This is most commonly
* used as template parameters or arguments.
*/
template AliasSeq(TList...)
Expand Down Expand Up @@ -648,7 +648,7 @@ unittest


/**
* Filters a $(D AliasSeq) using a template predicate. Returns a
* Filters an $(D AliasSeq) using a template predicate. Returns a
* $(D AliasSeq) of the elements which satisfy the predicate.
*/
template Filter(alias pred, TList...)
Expand Down Expand Up @@ -1018,7 +1018,7 @@ unittest
* Instantiates the given template with the given list of parameters.
*
* Used to work around syntactic limitations of D with regard to instantiating
* a template from a alias sequence (e.g. T[0]!(...) is not valid) or a template
* a template from an alias sequence (e.g. T[0]!(...) is not valid) or a template
* returning another template (e.g. Foo!(Bar)!(Baz) is not allowed).
*/
// TODO: Consider publicly exposing this, maybe even if only for better
Expand Down

0 comments on commit 29abd58

Please sign in to comment.