* lib/net/http/header.rb: Fix typo. [ci skip][fix GH-1407]

* transcode.c: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2016-08-16 02:18:51 +00:00
Родитель dd04487e02
Коммит 6f6ed7fbba
3 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Aug 16 11:17:51 2016 Koichi ITO <koic.ito@gmail.com>
* lib/net/http/header.rb: Fix typo. [ci skip][fix GH-1407]
* transcode.c: ditto.
Tue Aug 16 11:02:31 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* tool/make-snapshot (package): save generated header files from

Просмотреть файл

@ -388,7 +388,7 @@ module Net::HTTPHeader
alias form_data= set_form_data
# Set a HTML form data set.
# Set an HTML form data set.
# +params+ is the form data set; it is an Array of Arrays or a Hash
# +enctype is the type to encode the form data set.
# It is application/x-www-form-urlencoded or multipart/form-data.

Просмотреть файл

@ -3344,7 +3344,7 @@ rb_econv_init_by_convpath(VALUE self, VALUE convpath,
* Convert LF to CR.
* [:xml => :text]
* Escape as XML CharData.
* This form can be used as a HTML 4.0 #PCDATA.
* This form can be used as an HTML 4.0 #PCDATA.
* - '&' -> '&amp;'
* - '<' -> '&lt;'
* - '>' -> '&gt;'
@ -3352,7 +3352,7 @@ rb_econv_init_by_convpath(VALUE self, VALUE convpath,
* [:xml => :attr]
* Escape as XML AttValue.
* The converted result is quoted as "...".
* This form can be used as a HTML 4.0 attribute value.
* This form can be used as an HTML 4.0 attribute value.
* - '&' -> '&amp;'
* - '<' -> '&lt;'
* - '>' -> '&gt;'