From a8dba2e66952b75474ccf6b59b5ec9c672f3e458 Mon Sep 17 00:00:00 2001 From: "H. S. Teoh" Date: Wed, 7 Jan 2015 16:18:49 -0800 Subject: [PATCH] Add Params: to second overload of fill(). --- std/algorithm.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/std/algorithm.d b/std/algorithm.d index 27889e3e9..2617b0cf5 100644 --- a/std/algorithm.d +++ b/std/algorithm.d @@ -1714,6 +1714,12 @@ void fill(Range, Value)(Range range, Value value) Fills $(D range) with a pattern copied from $(D filler). The length of $(D range) does not have to be a multiple of the length of $(D filler). If $(D filler) is empty, an exception is thrown. + +Params: + range = An $(XREF2 range, isInputRange, input range) that exposes + references to its elements and has assignable elements. + filler = The $(XREF2 range, isForwardRange, forward range) representing the + _fill pattern. */ void fill(Range1, Range2)(Range1 range, Range2 filler) if (isInputRange!Range1