From 4563062e72bb44d7a1cf1a94883f8c54b0b84902 Mon Sep 17 00:00:00 2001
From: yui-knk <spiketeika@gmail.com>
Date: Fri, 17 Apr 2015 19:58:13 +0900
Subject: [ci skip] Update code example of Enumerable#without

---
 guides/source/active_support_core_extensions.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'guides')

diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index ff60f95a2c..2967ce8355 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -2188,7 +2188,7 @@ The method `without` returns a copy of an enumerable with the specified elements
 removed:
 
 ```ruby
-people.without("Aaron", "Todd")
+["David", "Rafael", "Aaron", "Todd"].without("Aaron", "Todd") # => ["David", "Rafael"]
 ```
 
 NOTE: Defined in `active_support/core_ext/enumerable.rb`.
-- 
cgit v1.2.3