From 0831f225700fc110f1d4b33bd6f4ae3d093af9c9 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Mon, 18 May 2026 19:05:56 +0100 Subject: [PATCH] Fix typo in `Faraday::Connection#options` doc --- lib/faraday/connection.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/faraday/connection.rb b/lib/faraday/connection.rb index 23fcda3e7..55f42cec9 100644 --- a/lib/faraday/connection.rb +++ b/lib/faraday/connection.rb @@ -210,7 +210,7 @@ def #{method}(url = nil, params = nil, headers = nil) # # @overload options(url, params = nil, headers = nil) # Makes an OPTIONS HTTP request to the given URL. - # @param url [String, URI, nil] String base URL to sue as a prefix for all requests. + # @param url [String, URI, nil] String base URL to use as a prefix for all requests. # @param params [Hash, nil] Hash of URI query unencoded key/value pairs. # @param headers [Hash, nil] unencoded HTTP header key/value pairs. #