diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 01:42:38 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-12-01 01:42:38 +0000 |
commit | 6ec023e56822ac9d3948cfbcf9a8c9e6bc9dbab9 (patch) | |
tree | 693cc710dbfcb069124338256cdc32e0b3bc4065 /doc | |
parent | d40aad1c09e509e585a8f23a2e713048ad5f3384 (diff) | |
download | ruby-6ec023e56822ac9d3948cfbcf9a8c9e6bc9dbab9.tar.gz |
* 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
Diffstat (limited to 'doc')
-rw-r--r-- | doc/syntax/refinements.rdoc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/syntax/refinements.rdoc b/doc/syntax/refinements.rdoc index 62405a78b7..3ba03f6d58 100644 --- a/doc/syntax/refinements.rdoc +++ b/doc/syntax/refinements.rdoc @@ -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 |