Skip to content

Commit

Permalink
Merge pull request #8825 from nordlow/fix-joiner-spelling
Browse files Browse the repository at this point in the history
Correct spelling of Seperator to Separator in joiner()
  • Loading branch information
jmdavis authored Oct 10, 2023
2 parents f4e8cc4 + 578dfbf commit d945686
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/algorithm/iteration.d
Original file line number Diff line number Diff line change
Expand Up @@ -2975,9 +2975,9 @@ auto joiner(RoR, Separator)(RoR r, Separator sep)
static assert(isInputRange!(ElementType!RoR), "The ElementyType of RoR '"
, ElementType!(RoR).stringof, "' must be an InputRange "
, "(isInputRange!(ElementType!(", RoR.stringof , "))).");
static assert(isForwardRange!Separator, "The type of the Seperator '"
, Seperator.stringof, "' must be a ForwardRange (isForwardRange!("
, Seperator.stringof, ")).");
static assert(isForwardRange!Separator, "The type of the Separator '"
, Separator.stringof, "' must be a ForwardRange (isForwardRange!("
, Separator.stringof, ")).");
static assert(is(ElementType!Separator : ElementType!(ElementType!RoR))
, "The type of the elements of the separator range does not match "
, "the type of the elements that are joined. Separator type '"
Expand Down

0 comments on commit d945686

Please sign in to comment.