From 373e1892b04c160131571e9ea3ffbf55e92525b4 Mon Sep 17 00:00:00 2001 From: Kunal Bhalla Date: Fri, 10 Oct 2014 20:48:42 -0700 Subject: [PATCH] Correct documentation for anySatisfy --- std/typetuple.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/typetuple.d b/std/typetuple.d index a6a5523db..1e66cd01a 100644 --- a/std/typetuple.d +++ b/std/typetuple.d @@ -617,7 +617,7 @@ unittest } /** -Tests whether all given items satisfy a template predicate, i.e. evaluates to +Tests whether any given items satisfy a template predicate, i.e. evaluates to $(D F!(T[0]) || F!(T[1]) || ... || F!(T[$ - 1])). Evaluation is $(I not) short-circuited if a true result is encountered; the