Skip to content

Commit d945686

Browse files
authored
Merge pull request #8825 from nordlow/fix-joiner-spelling
Correct spelling of Seperator to Separator in joiner()
2 parents f4e8cc4 + 578dfbf commit d945686

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

std/algorithm/iteration.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2975,9 +2975,9 @@ auto joiner(RoR, Separator)(RoR r, Separator sep)
29752975
static assert(isInputRange!(ElementType!RoR), "The ElementyType of RoR '"
29762976
, ElementType!(RoR).stringof, "' must be an InputRange "
29772977
, "(isInputRange!(ElementType!(", RoR.stringof , "))).");
2978-
static assert(isForwardRange!Separator, "The type of the Seperator '"
2979-
, Seperator.stringof, "' must be a ForwardRange (isForwardRange!("
2980-
, Seperator.stringof, ")).");
2978+
static assert(isForwardRange!Separator, "The type of the Separator '"
2979+
, Separator.stringof, "' must be a ForwardRange (isForwardRange!("
2980+
, Separator.stringof, ")).");
29812981
static assert(is(ElementType!Separator : ElementType!(ElementType!RoR))
29822982
, "The type of the elements of the separator range does not match "
29832983
, "the type of the elements that are joined. Separator type '"

0 commit comments

Comments
 (0)