summaryrefslogtreecommitdiff
path: root/rational.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-23 18:35:37 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-23 18:35:37 +0000
commit9d3a9e97c0399a3d9e12db677ab974240dd57a57 (patch)
treea1f8e19c60efaaf8ea1bd2bc63b6be26511af464 /rational.c
parent3a35a8e9dcff5a501f3d484fdcb8ac609c57a27b (diff)
merge revision(s) 50406,50407: [Backport #11075]
* rational.c: Added documentation for rational literal. [Bug #11075][fix GH-885][ci skip] Patch by @shishir127 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@50627 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rational.c')
-rw-r--r--rational.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/rational.c b/rational.c
index addb195e81..134db642c1 100644
--- a/rational.c
+++ b/rational.c
@@ -2465,13 +2465,14 @@ nurat_s_convert(int argc, VALUE *argv, VALUE klass)
* a/b (b>0). Where a is numerator and b is denominator. Integer a
* equals rational a/1 mathematically.
*
- * In ruby, you can create rational object with Rational, to_r or
- * rationalize method. The return values will be irreducible.
+ * In ruby, you can create rational object with Rational, to_r,
+ * rationalize method or suffixing r to a literal. The return values will be irreducible.
*
* Rational(1) #=> (1/1)
* Rational(2, 3) #=> (2/3)
* Rational(4, -6) #=> (-2/3)
* 3.to_r #=> (3/1)
+ * 2/3r #=> (2/3)
*
* You can also create rational object from floating-point numbers or
* strings.