summaryrefslogtreecommitdiff
path: root/transcode.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-16 02:18:51 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-16 02:18:51 +0000
commit6f6ed7fbba2ab59f784069484f3dbd3003c97515 (patch)
treed49cc20aec7eed99361c3bdb9426c1b34b8c4a86 /transcode.c
parentdd04487e023efdb873d755581ef768c4f58ecb2e (diff)
* 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
Diffstat (limited to 'transcode.c')
-rw-r--r--transcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/transcode.c b/transcode.c
index 8aa9cf3352..2c0b30ca0e 100644
--- a/transcode.c
+++ b/transcode.c
@@ -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;'