diff options
author | Burdette Lamar <[email protected]> | 2020-09-28 11:58:39 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-28 11:58:39 -0500 |
commit | 0555bd8435d352a24bab1e03a7879b9abcc34b88 (patch) | |
tree | dd92874ccdeff4594a2828d840aa7e7bd013f6b8 | |
parent | d598654c742eddc4284814021a8d4b1d6e48b604 (diff) |
Enhanced RDoc for String#succ! (#3596)
* Enhanced RDoc for String#succ!
Notes
Notes:
Merged-By: BurdetteLamar <[email protected]>
-rw-r--r-- | string.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4310,10 +4310,11 @@ str_succ(VALUE str) /* * call-seq: - * str.succ! -> str - * str.next! -> str + * string.succ! -> self * - * Equivalent to String#succ, but modifies the receiver in place. + * Equivalent to String#succ, but modifies +self+ in place; returns +self+. + * + * String#next! is an alias for String#succ!. */ static VALUE |