[前][次][番号順一覧][スレッド一覧]

ruby-changes:43842

From: hsbt <ko1@a...>
Date: Tue, 16 Aug 2016 11:18:58 +0900 (JST)
Subject: [ruby-changes:43842] hsbt:r55915 (trunk): * lib/net/http/header.rb: Fix typo. [ci skip][fix GH-1407]

hsbt	2016-08-16 11:18:51 +0900 (Tue, 16 Aug 2016)

  New Revision: 55915

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55915

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

  Modified files:
    trunk/ChangeLog
    trunk/lib/net/http/header.rb
    trunk/transcode.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 55914)
+++ ChangeLog	(revision 55915)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Tue Aug 16 11:17:51 2016  Koichi ITO  <koic.ito@g...>
+
+	* 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@r...>
 
 	* tool/make-snapshot (package): save generated header files from
Index: transcode.c
===================================================================
--- transcode.c	(revision 55914)
+++ transcode.c	(revision 55915)
@@ -3344,7 +3344,7 @@ rb_econv_init_by_convpath(VALUE self, VA https://github.com/ruby/ruby/blob/trunk/transcode.c#L3344
  *   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, VA https://github.com/ruby/ruby/blob/trunk/transcode.c#L3352
  * [: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;'
Index: lib/net/http/header.rb
===================================================================
--- lib/net/http/header.rb	(revision 55914)
+++ lib/net/http/header.rb	(revision 55915)
@@ -388,7 +388,7 @@ module Net::HTTPHeader https://github.com/ruby/ruby/blob/trunk/lib/net/http/header.rb#L388
 
   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.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]