Skip to content

Commit e289aa7

Browse files
ydahhsbt
authored andcommitted
inifinite ==> infinite
1 parent 5c3c009 commit e289aa7

9 files changed

+9
-9
lines changed

en/news/_posts/2018-05-31-ruby-2-6-0-preview2-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ This module has `parse` method which parses a given ruby code of string and retu
5555
An endless range, `(1..)`, is introduced. It works as it has no end. This shows typical use cases:
5656

5757
ary[1..] # identical to ary[1..-1] without magical -1
58-
(1..).each {|index| ... } # inifinite loop from index 1
58+
(1..).each {|index| ... } # infinite loop from index 1
5959
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
6060

6161
* Add `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

en/news/_posts/2018-11-06-ruby-2-6-0-preview3-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This module has `parse` method which parses a given ruby code of string and retu
5050
An endless range, `(1..)`, is introduced. It works as it has no end. This shows typical use cases:
5151

5252
ary[1..] # identical to ary[1..-1] without magical -1
53-
(1..).each {|index| ... } # inifinite loop from index 1
53+
(1..).each {|index| ... } # infinite loop from index 1
5454
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
5555

5656
* Add `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

en/news/_posts/2018-12-06-ruby-2-6-0-rc1-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This module has `parse` method which parses a given ruby code of string and retu
5050
An endless range, `(1..)`, is introduced. It works as it has no end. This shows typical use cases:
5151

5252
ary[1..] # identical to ary[1..-1] without magical -1
53-
(1..).each {|index| ... } # inifinite loop from index 1
53+
(1..).each {|index| ... } # infinite loop from index 1
5454
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
5555

5656
* Add `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

en/news/_posts/2018-12-15-ruby-2-6-0-rc2-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The `RubyVM::AbstractSyntaxTree::Node` class is also introduced. You can get loc
5151
An endless range, `(1..)`, is introduced. It works as if it has no end. This shows typical use cases:
5252

5353
ary[1..] # identical to ary[1..-1] without magical -1
54-
(1..).each {|index| block } # inifinite loop from index 1
54+
(1..).each {|index| block } # infinite loop from index 1
5555
ary.zip(1..) {|elem, index| block } # ary.each.with_index(1) { }
5656

5757
* Add `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

id/news/_posts/2018-05-31-ruby-2-6-0-preview2-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Kesesuaian struktur dari AST *node* tidak dijamin.
7575
Sebuah endless range, `(1..)`, diperkenalkan. Ini berjalan tanpa ada akhirnya. Biasanya digunakan untuk kasus:
7676

7777
ary[1..] # identik dengan ary[1..-1] tanpa magical -1
78-
(1..).each {|index| ... } # inifinite loop dari indeks 1
78+
(1..).each {|index| ... } # infinite loop dari indeks 1
7979
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
8080

8181
* Menambahkan `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

id/news/_posts/2018-11-06-ruby-2-6-0-preview3-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Kesesuaian struktur dari AST *node* tidak dijamin.
6868
Sebuah endless range, `(1..)`, diperkenalkan. Ini berjalan tanpa ada akhirnya. Biasanya digunakan untuk kasus:
6969

7070
ary[1..] # identik dengan ary[1..-1] tanpa magical -1
71-
(1..).each {|index| ... } # inifinite loop dari indeks 1
71+
(1..).each {|index| ... } # infinite loop dari indeks 1
7272
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
7373

7474
* Menambahkan `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

id/news/_posts/2018-12-06-ruby-2-6-0-rc1-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ eksperimental. Kesesuaian struktur dari AST *node* tidak dijamin.
6868
Sebuah endless range, `(1..)`, diperkenalkan. Ini berjalan tanpa ada akhirnya. Biasanya digunakan untuk kasus:
6969

7070
ary[1..] # identik dengan ary[1..-1] tanpa magical -1
71-
(1..).each {|index| ... } # inifinite loop dari indeks 1
71+
(1..).each {|index| ... } # infinite loop dari indeks 1
7272
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
7373

7474
* Menambahkan `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

id/news/_posts/2018-12-15-ruby-2-6-0-rc2-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ eksperimental. Kesesuaian struktur dari AST *node* tidak dijamin.
6969
Sebuah endless range, `(1..)`, diperkenalkan. Ini berjalan tanpa ada akhirnya. Biasanya digunakan untuk kasus:
7070

7171
ary[1..] # identik dengan ary[1..-1] tanpa magical -1
72-
(1..).each {|index| ... } # inifinite loop dari indeks 1
72+
(1..).each {|index| ... } # infinite loop dari indeks 1
7373
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
7474

7575
* Menambahkan `Binding#source_location`. [[Feature #14230]](https://bugs.ruby-lang.org/issues/14230)

id/news/_posts/2018-12-25-ruby-2-6-0-released.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ eksperimental.
6868
Sebuah endless range, `(1..)`, berjalan tanpa ada akhirnya. Biasanya digunakan untuk kasus:
6969

7070
ary[1..] # identik dengan ary[1..-1] tanpa magical -1
71-
(1..).each {|index| ... } # inifinite loop dari indeks 1
71+
(1..).each {|index| ... } # infinite loop dari indeks 1
7272
ary.zip(1..) {|elem, index| ... } # ary.each.with_index(1) { ... }
7373

7474
* Menambahkan `Enumerable#chain` dan `Enumerator#+`. [[Feature #15144]](https://bugs.ruby-lang.org/issues/15144)

0 commit comments

Comments
 (0)