summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 17:34:13 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 17:34:13 +0000
commitae432a96b1d064e39b23aeccea9ca5cfafd71ee0 (patch)
tree1036d9bc5a4cf48452dac9d2a64c18c2e8adf4a3
parent8c34c05d241d69b80ddb67257041d1cb40cc9c72 (diff)
merge revision(s) 57539: [Backport #11752]
rational.c: fix rdoc [ci skip] * rational.c (rb_rational_plus): [DOC] fix an example. A patch by Trygve Flathen <at.ruby-lang AT flathen.net> in [ruby-core:71755]. [Bug #11752] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@58110 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--rational.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/rational.c b/rational.c
index 8fa69bd114..3e5dea3349 100644
--- a/rational.c
+++ b/rational.c
@@ -744,7 +744,7 @@ f_addsub(VALUE self, VALUE anum, VALUE aden, VALUE bnum, VALUE bden, int k)
* Performs addition.
*
* Rational(2, 3) + Rational(2, 3) #=> (4/3)
- * Rational(900) + Rational(1) #=> (900/1)
+ * Rational(900) + Rational(1) #=> (901/1)
* Rational(-2, 9) + Rational(-9, 2) #=> (-85/18)
* Rational(9, 8) + 4 #=> (41/8)
* Rational(20, 9) + 9.8 #=> 12.022222222222222
diff --git a/version.h b/version.h
index 7aa76b0f4e..a7867a858b 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.7"
#define RUBY_RELEASE_DATE "2017-03-26"
-#define RUBY_PATCHLEVEL 442
+#define RUBY_PATCHLEVEL 443
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3