Skip to content

Commit 465eec7

Browse files
committed
merge revision(s) 15425:
* lib/benchmark.rb (Job::Benchmark#item): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@17135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 5ecf4d8 commit 465eec7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Fri Jun 13 12:10:13 2008 NARUSE, Yui <naruse@ruby-lang.org>
2+
3+
* lib/benchmark.rb (Job::Benchmark#item): fix typo.
4+
15
Fri Jun 13 12:06:17 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
26

37
* ext/bigdecimal/bigdecimal.c (BigDecimal_to_f): use strtod() for more

lib/benchmark.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def initialize(width)
333333
# Registers the given label and block pair in the job list.
334334
#
335335
def item(label = "", &blk) # :yield:
336-
raise ArgmentError, "no block" unless block_given?
336+
raise ArgumentError, "no block" unless block_given?
337337
label.concat ' '
338338
w = label.length
339339
@width = w if @width < w

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define RUBY_RELEASE_DATE "2008-06-13"
33
#define RUBY_VERSION_CODE 186
44
#define RUBY_RELEASE_CODE 20080613
5-
#define RUBY_PATCHLEVEL 173
5+
#define RUBY_PATCHLEVEL 174
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8

0 commit comments

Comments
 (0)