From 30a7d7b0714acde6d4be571169f1024656c37580 Mon Sep 17 00:00:00 2001 From: Henrikh Kantuni Date: Thu, 16 Nov 2023 01:43:21 -0500 Subject: [PATCH] Fix typos --- src/Http.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Http.elm b/src/Http.elm index 7b7b794..3da01b0 100644 --- a/src/Http.elm +++ b/src/Http.elm @@ -545,7 +545,7 @@ resolve toResult response = - `BadUrl` means you did not provide a valid URL. - `Timeout` means it took too long to get a response. -- `NetworkError` means the user turned off their wifi, went in a cave, etc. +- `NetworkError` means the user turned off their wifi, went into a cave, etc. - `BadStatus` means you got a response back, but the status code indicates failure. - `BadBody` means you got a response back with a nice status code, but the body of the response was something unexpected. The `String` in this case is a @@ -624,7 +624,7 @@ expectBytesResponse toMsg toResult = - `BadUrl_` — you did not provide a valid URL. - `Timeout_` — it took too long to get a response. -- `NetworkError_` — the user turned off their wifi, went in a cave, etc. +- `NetworkError_` — the user turned off their wifi, went into a cave, etc. - `BadStatus_` — a response arrived, but the status code indicates failure. - `GoodStatus_` — a response arrived with a nice status code!