• KOBAYASHI Shuji's avatar
    Fix the error message of `Kernel#Float` · cf6ae0de
    KOBAYASHI Shuji authored
    #### Before this patch:
    
      ```
      $ bin/mruby -e 'Float("1_a")'
      -e:1: invalid string for float(a) (ArgumentError)
      ```
    
    #### After this patch:
    
      ```
      $ bin/mruby -e 'Float("1_a")'
      -e:1: invalid string for float("1_a") (ArgumentError)
      ```
    cf6ae0de
string.c 79.2 KB