Skip to content

Commit b3b66e1

Browse files
author
Kristján Oddsson
authored
fix sentence that didn't make any sense
1 parent 584b109 commit b3b66e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ruby/lesson2/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To get all the numbers from 1 up to 5, excluding 5.
4949
5050
### `Random.rand()`
5151

52-
Random is an interface to a number generator. The `rand()` method takes in an integer value **max**. It returns an integer greater or equal than zero and less than **max**. You can also use a **range** as a parameter.
52+
Random is an interface to a number generator. The `rand()` method takes in an integer value **max**. It returns an integer greater than or equal to zero and less than **max**. You can also use a **range** as a parameter.
5353

5454
```ruby
5555
Random.rand(5..10)

0 commit comments

Comments
 (0)