From 305e09cdaa27b2a409adda173a112304646d5887 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Wed, 26 Jan 2022 08:38:24 -0800 Subject: [PATCH] Fix typo. --- src/DataSource/Http.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DataSource/Http.elm b/src/DataSource/Http.elm index 18375ae7..e24245ba 100644 --- a/src/DataSource/Http.elm +++ b/src/DataSource/Http.elm @@ -172,7 +172,7 @@ request urlWithSecrets decoder = unoptimizedRequest urlWithSecrets (ExpectJson decoder) -{-| Analgous to the `Expect` type in the `elm/http` package. This represents how you will process the data that comes +{-| Analogous to the `Expect` type in the `elm/http` package. This represents how you will process the data that comes back in your DataSource.Http request. You can derive `ExpectUnoptimizedJson` from `ExpectString`. Or you could build your own helper to process the String