1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* doc/syntax/refinements.rdoc: refinements are no longer experimental.

patch by @gaurish [fix GH-755][ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48656 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-12-01 01:42:38 +00:00
parent d40aad1c09
commit 6ec023e568
2 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,8 @@
Mon Dec 1 10:42:31 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* doc/syntax/refinements.rdoc: refinements are no longer experimental.
patch by @gaurish [fix GH-755][ci skip]
Sun Nov 30 20:05:55 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (regexp_contents): fix a typo. pointed out by wanabe.

View file

@ -9,11 +9,6 @@ Refinements are designed to reduce the impact of monkey patching on other
users of the monkey-patched class. Refinements provide a way to extend a
class locally.
Refinements are an experimental feature in Ruby 2.0. At the time of writing,
refinements are expected to exist in future versions of Ruby but the
specification of refinements may change. You will receive a warning the first
time you define or activate a refinement.
Here is a basic refinement:
class C