diff --git a/numeric.c b/numeric.c index f67b910c1f..1fa4c4d562 100644 --- a/numeric.c +++ b/numeric.c @@ -3635,7 +3635,7 @@ rb_int_fdiv_double(VALUE x, VALUE y) * call-seq: * integer.fdiv(numeric) -> float * - * Returns the floating point result of dividing +fix+ by +numeric+. + * Returns the floating point result of dividing +integer+ by +numeric+. * * 654321.fdiv(13731) #=> 47.6528293642124 * 654321.fdiv(13731.24) #=> 47.6519964693647 @@ -4635,7 +4635,7 @@ rb_int_abs(VALUE num) * call-seq: * int.size -> int * - * Returns the number of bytes in the machine representation of +fix+. + * Returns the number of bytes in the machine representation of +int+. * * 1.size #=> 4 * -1.size #=> 4 diff --git a/version.h b/version.h index 0620c024d9..89551b65ae 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,6 @@ #define RUBY_VERSION "2.4.0" #define RUBY_RELEASE_DATE "2017-03-13" -#define RUBY_PATCHLEVEL 75 +#define RUBY_PATCHLEVEL 76 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3