Skip to content

Commit 5f37d8b

Browse files
committed
Fix a couple typos in limitations.md
1 parent 6498970 commit 5f37d8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/limitations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Please help to improve it by submitting your findings.
1717
## ```1/2``` gives ```0.5```
1818

1919
Since mruby does not have ```Bignum```, bigger integers are represented
20-
by ```Float``` numbers. To enhance interoperability between ```Float```
21-
and ```Float```, mruby provides ``Float#upto``` and other iterating
22-
methods for ```Float`` class. As a side effect, ```1/2``` gives ```0.5```
20+
by ```Float``` numbers. To enhance interoperability between ```Fixnum```
21+
and ```Float```, mruby provides ```Float#upto``` and other iterating
22+
methods for the ```Float``` class. As a side effect, ```1/2``` gives ```0.5```
2323
not ```0```.
2424

2525
## ```Array``` passed to ```puts```
@@ -144,7 +144,7 @@ true
144144

145145
## defined?
146146

147-
The ```defined?``` keyword is considered to complex to be fully
147+
The ```defined?``` keyword is considered too complex to be fully
148148
implemented. It is recommended to use ```const_defined?``` and
149149
other reflection methods instead.
150150

0 commit comments

Comments
 (0)