Fix broken link to isForwardRange in split doc.

This commit is contained in:
Mike Parker 2015-01-07 11:33:02 +09:00
parent 939fb045e3
commit 77585def4f

View file

@ -1311,7 +1311,7 @@ deprecated("Please use std.algorithm.splitter instead.") alias splitter = std.al
/++
Eagerly splits $(D range) into an array, using $(D sep) as the delimiter.
The range must be a $(FULL_XREF std_range.html#isForwardRange, forward range).
The range must be a $(XREF2 range, isForwardRange, forward range).
The separator can be a value of the same type as the elements in $(D range) or
it can be another forward range.