diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-10 15:26:48 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-04-10 15:26:48 +0000 |
commit | 85f62055c452b93c8e7ccab8bdea2ce7919f4e43 (patch) | |
tree | 3c4264fffd6878177cbfae4bf436b0c9a56df9ed /doc/extension.ja.rdoc | |
parent | acafc5e0c7aa4695db06cc6cbe98e26ec600b60a (diff) | |
download | ruby-85f62055c452b93c8e7ccab8bdea2ce7919f4e43.tar.gz |
extension.rdoc: fix rb_enc_str_new_literal
* doc/extension.rdoc: Add missing enc arg to rb_enc_str_new_literal.
[ci skip]
[Fix GH-1577]
Author: Dylan Thacker-Smith <Dylan.Smith@shopify.com>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/extension.ja.rdoc')
-rw-r--r-- | doc/extension.ja.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/extension.ja.rdoc b/doc/extension.ja.rdoc index 5ae96a96ae..30f1b566d3 100644 --- a/doc/extension.ja.rdoc +++ b/doc/extension.ja.rdoc @@ -259,7 +259,7 @@ rb_enc_str_new_cstr(const char *ptr, rb_encoding *enc) :: 指定されたエンコーディングでRubyの文字列を生成する. -rb_enc_str_new_literal(const char *ptr) :: +rb_enc_str_new_literal(const char *ptr, rb_encoding *enc) :: Cのリテラル文字列から指定されたエンコーディングでRubyの文字列を生成する. |