From 463801c57493694956ec2db2027cc3ae682c2129 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 1 Nov 2023 22:18:04 +0900 Subject: [PATCH] =?UTF-8?q?open-uri:=20OpenURI::Meta#content=5Ftype=20?= =?UTF-8?q?=E3=81=AF=E6=96=87=E5=AD=97=E5=88=97=E3=82=92=E8=BF=94=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 見出しには `-> String` と書かれており、例示されているサンプルや、実際の実装も文字列を返しているが、説明は「文字列の配列」となっているため修正します。 --- refm/api/src/open-uri.rd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/refm/api/src/open-uri.rd b/refm/api/src/open-uri.rd index 0d7941edae..9004fc41a4 100644 --- a/refm/api/src/open-uri.rd +++ b/refm/api/src/open-uri.rd @@ -383,7 +383,7 @@ open('http://www.rubyist.net/') {|f| --- content_type -> String -対象となるリソースの Content-Type を文字列の配列で返します。Content-Type ヘッダの情報が使われます。 +対象となるリソースの Content-Type を文字列で返します。Content-Type ヘッダの情報が使われます。 Content-Type ヘッダがない場合は、"application/octet-stream" を返します。 #@samplecode 例