correct use of See_Also

This commit is contained in:
Walter Bright 2014-12-27 16:30:07 -08:00
parent 3322f62602
commit c84ce85e35
5 changed files with 29 additions and 15 deletions

View file

@ -2985,7 +2985,8 @@ If splitting a string on whitespace and token compression is desired,
consider using $(D splitter) without specifying a separator (see overload
below).
See also $(XREF regex, splitter) for a version that splits using a regular
See_Also:
$(XREF regex, splitter) for a version that splits using a regular
expression defined separator.
*/
auto splitter(Range, Separator)(Range r, Separator s)
@ -3241,7 +3242,7 @@ Two adjacent separators are considered to surround an empty element in
the split range. Use $(D filter!(a => !a.empty)) on the result to compress
empty elements.
See also $(XREF regex, splitter) for a version that splits using a regular
See_Also: $(XREF regex, splitter) for a version that splits using a regular
expression defined separator.
*/
auto splitter(Range, Separator)(Range r, Separator s)