aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/uri/common.rb4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e511f497d8..4bc1dd4931 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 20 17:02:56 2016 SHIBATA Hiroshi <hsbt@ruby-lang.org>
+
+ * lib/uri/common.rb: added documentation for deprecated method.
+ [Misc #11960][ruby-core:72733][ci skip]
+
Thu Oct 20 16:57:23 2016 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* ext/digest/digest.c: Add documentation for Digest.
diff --git a/lib/uri/common.rb b/lib/uri/common.rb
index 3fb1a6dbda..48bf6970de 100644
--- a/lib/uri/common.rb
+++ b/lib/uri/common.rb
@@ -81,6 +81,10 @@ module URI
#
# Escapes the string, replacing all unsafe characters with codes.
#
+ # This method is obsolete and should not be used. Instead, use
+ # CGI.escape, URI.www_form_encode or URI.www_form_encode_component
+ # depending on your specific use case.
+ #
# == Usage
#
# require 'uri'