File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
5
Fri Jun 13 12:06:17 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
6
3
7
* ext/bigdecimal/bigdecimal.c (BigDecimal_to_f): use strtod() for more
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ def initialize(width)
333
333
# Registers the given label and block pair in the job list.
334
334
#
335
335
def item ( label = "" , &blk ) # :yield:
336
- raise ArgmentError , "no block" unless block_given?
336
+ raise ArgumentError , "no block" unless block_given?
337
337
label . concat ' '
338
338
w = label . length
339
339
@width = w if @width < w
Original file line number Diff line number Diff line change 2
2
#define RUBY_RELEASE_DATE "2008-06-13"
3
3
#define RUBY_VERSION_CODE 186
4
4
#define RUBY_RELEASE_CODE 20080613
5
- #define RUBY_PATCHLEVEL 173
5
+ #define RUBY_PATCHLEVEL 174
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
You can’t perform that action at this time.
0 commit comments