From 3250238e2b90a6c97fe1b94560e389e07b56470d Mon Sep 17 00:00:00 2001 From: Ajay Sharma Date: Sat, 30 Mar 2024 17:04:43 -0700 Subject: [PATCH] Fixes comment typo in errors.rb (#781) `connection` was misspelled --- lib/http/errors.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/errors.rb b/lib/http/errors.rb index f722a478..f0f44ab8 100644 --- a/lib/http/errors.rb +++ b/lib/http/errors.rb @@ -19,7 +19,7 @@ class StateError < ResponseError; end # Generic Timeout error class TimeoutError < Error; end - # Timeout when first establishing the conncetion + # Timeout when first establishing the connection class ConnectTimeoutError < TimeoutError; end # Header value is of unexpected format (similar to Net::HTTPHeaderSyntaxError)