From fb98b139cd0268fbd6a28b534301946fd6caddc9 Mon Sep 17 00:00:00 2001 From: takuma furuichi Date: Fri, 13 Feb 2026 18:13:32 +0900 Subject: [PATCH 1/2] add-information-link --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fcc1f395..d5b8599b 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,8 @@ res = Net::HTTP.post_form(uri, 'q' => ['ruby', 'perl'], 'max' => '50') puts res.body ``` +[For more information](https://docs.ruby-lang.org/en/4.0/Net/HTTP.html#public-class-methods) + ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. From 23fbdb979a0a945b15dd413623e1d002e263d112 Mon Sep 17 00:00:00 2001 From: takuma furuichi Date: Tue, 17 Feb 2026 00:42:02 +0900 Subject: [PATCH 2/2] update the link and the text --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5b8599b..04e1738f 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ res = Net::HTTP.post_form(uri, 'q' => ['ruby', 'perl'], 'max' => '50') puts res.body ``` -[For more information](https://docs.ruby-lang.org/en/4.0/Net/HTTP.html#public-class-methods) +See the [documentation](https://docs.ruby-lang.org/en/master/Net/HTTP.html) for more details. ## Development