mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-07 00:00:35 -05:00
Fix formatting in ConnectionFailed error message
Add space at the end of the second line so the complete message separates the word `not` and `working` message before ``` Stripe::APIConnectionError: Unexpected error communicating when trying to connect to Stripe. You may be seeing this message because your DNS is notworking. To check, try running `host stripe.com` from the command line. ``` message after ``` Stripe::APIConnectionError: Unexpected error communicating when trying to connect to Stripe. You may be seeing this message because your DNS is not working. To check, try running `host stripe.com` from the command line. ```
This commit is contained in:
parent
2cc77147d2
commit
212ca4bb0a
@ -447,7 +447,7 @@ module Stripe
|
|||||||
case error
|
case error
|
||||||
when Faraday::ConnectionFailed
|
when Faraday::ConnectionFailed
|
||||||
message = "Unexpected error communicating when trying to connect to " \
|
message = "Unexpected error communicating when trying to connect to " \
|
||||||
"Stripe. You may be seeing this message because your DNS is not" \
|
"Stripe. You may be seeing this message because your DNS is not " \
|
||||||
"working. To check, try running `host stripe.com` from the " \
|
"working. To check, try running `host stripe.com` from the " \
|
||||||
"command line."
|
"command line."
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user