From 5d196cfe0253f899538cc84e8cbe981089351119 Mon Sep 17 00:00:00 2001 From: David Winiecki Date: Fri, 12 Feb 2016 12:39:22 -0800 Subject: [PATCH] Update are-they-all-true.md --- ruby/are-they-all-true.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruby/are-they-all-true.md b/ruby/are-they-all-true.md index f5ca112..1999b89 100644 --- a/ruby/are-they-all-true.md +++ b/ruby/are-they-all-true.md @@ -3,10 +3,10 @@ There is a method on `Enumerable` that allows you to check against everything in a collection. This is the `all?` method. For instance, if you want to check if an array of values are all -true, you can call it without arguments: +truthy, you can call it without arguments: ```ruby -> [true, true, true].all? +> [true, 1, ''].all? # true > [true, false, true].all? # false