From 2ddf0a958624f23cb7883ffcb1503ce76015bcd2 Mon Sep 17 00:00:00 2001 From: Gavin Schulz Date: Thu, 15 Jan 2015 19:05:54 -0800 Subject: [PATCH] Fix some overlooked references to `forall`. --- doc/site/core-library.markdown | 2 +- test/list/{forall.wren => all.wren} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test/list/{forall.wren => all.wren} (100%) diff --git a/doc/site/core-library.markdown b/doc/site/core-library.markdown index cb99caf2..c5cc6966 100644 --- a/doc/site/core-library.markdown +++ b/doc/site/core-library.markdown @@ -313,7 +313,7 @@ Removes all items from the list. The number of items in the list. -### **forall(predicate)** +### **all(predicate)** Tests whether all the elements in the list pass the `predicate`. diff --git a/test/list/forall.wren b/test/list/all.wren similarity index 100% rename from test/list/forall.wren rename to test/list/all.wren