Skip to content

Commit 9f11010

Browse files
committed
merge revision(s) 41593:
* array.c: Return value in Array overview example found by @PragTob [Fix rubyGH-336] ruby#336 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 80a83ca commit 9f11010

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Tue Jun 25 00:12:19 2013 Zachary Scott <[email protected]>
2+
3+
* array.c: Return value in Array overview example found by @PragTob
4+
[Fix GH-336] https://github.com/ruby/ruby/pull/336
5+
16
Tue Jun 25 00:11:46 2013 Zachary Scott <[email protected]>
27

38
* array.c (rb_ary_zip): typo by @PragTob [Fix GH-337]

array.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5415,7 +5415,7 @@ rb_ary_drop_while(VALUE ary)
54155415
*
54165416
* arr = [1, 2, 3, 4, 5, 6]
54175417
* arr.select { |a| a > 3 } #=> [4, 5, 6]
5418-
* arr.reject { |a| a < 3 } #=> [4, 5, 6]
5418+
* arr.reject { |a| a < 3 } #=> [3, 4, 5, 6]
54195419
* arr.drop_while { |a| a < 4 } #=> [4, 5, 6]
54205420
* arr #=> [1, 2, 3, 4, 5, 6]
54215421
*

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "2.0.0"
22
#define RUBY_RELEASE_DATE "2013-06-25"
3-
#define RUBY_PATCHLEVEL 240
3+
#define RUBY_PATCHLEVEL 241
44

55
#define RUBY_RELEASE_YEAR 2013
66
#define RUBY_RELEASE_MONTH 6

0 commit comments

Comments
 (0)