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:
Jakob Cosoroabă 2019-06-28 13:19:57 +03:00 committed by GitHub
parent 2cc77147d2
commit 212ca4bb0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -447,7 +447,7 @@ module Stripe
case error
when Faraday::ConnectionFailed
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 " \
"command line."