diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 04:38:32 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-06-16 04:38:32 -0700 |
| commit | ef89553b26d92b6ae1ee91f4f096fee6e9427c6d (patch) | |
| tree | d0d1758678e216a07d1ebb3f51baa077b8bf450b | |
| parent | 34cd70b1c5fabc3e3a4f6a705c2bcb3a78fd7ab9 (diff) | |
| parent | 63a29dbce6aabb80b64dd80cee9c26b4d5dbbc41 (diff) | |
| download | mruby-ef89553b26d92b6ae1ee91f4f096fee6e9427c6d.tar.gz mruby-ef89553b26d92b6ae1ee91f4f096fee6e9427c6d.zip | |
Merge pull request #1282 from carsonmcdonald/littypofix
Change seperator to separator
| -rw-r--r-- | test/t/literals.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/literals.rb b/test/t/literals.rb index f40852ff9..1e4c3a31c 100644 --- a/test/t/literals.rb +++ b/test/t/literals.rb @@ -14,7 +14,7 @@ assert('Literals Numerical', '8.7.6.2') do 0xff == 255 and 0Xff == 255 and # decimal 0d999 == 999 and 0D999 == 999 and - # decimal seperator + # decimal separator 10_000_000 == 10000000 and 1_0 == 10 and # integer with exponent 1e1 == 10.0 and 1e-1 == 0.1 and 1e+1 == 10.0 |
