From c17f918425d7adb569c9caeda04718f1f5adc837 Mon Sep 17 00:00:00 2001 From: iMacTia Date: Thu, 23 May 2019 18:39:53 +0100 Subject: [PATCH] Removes Travis link from README --- README.md | 4 ++-- docs/introduction/basics.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4239c731..c21c57c4 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ end ## Supported Ruby versions -This library aims to support and is [tested against][travis] the following Ruby +This library aims to support and is [tested against][circle_ci] the following Ruby implementations: * Ruby 2.3+ @@ -76,7 +76,7 @@ See [LICENSE][] for details. [net_http]: ./docs/adapters/net_http.md [persistent]: ./docs/adapters/net_http_persistent.md -[travis]: https://travis-ci.org/lostisland/faraday +[circle_ci]: https://circleci.com/gh/lostisland/faraday [excon]: ./docs/adapters/excon.md [patron]: ./docs/adapters/patron.md [em-synchrony]: ./docs/adapters/em-synchrony.md diff --git a/docs/introduction/basics.md b/docs/introduction/basics.md index 68570788..80d9de16 100644 --- a/docs/introduction/basics.md +++ b/docs/introduction/basics.md @@ -29,7 +29,7 @@ Since the default middleware stack uses `url_encoded` middleware and default ada ```ruby conn = Faraday.new(url: 'http://sushi.com') do |faraday| faraday.request :url_encoded # form-encode POST params - faraday.response :logger # log requests and responses to $stdout + faraday.response :logger # log requests and responses to $stdout faraday.adapter Faraday.default_adapter # make requests with Net::HTTP end ```