Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
expede committed Jul 2, 2021
1 parent a10b5e0 commit 9066d25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ purgeMany :: forall m . MonadHttp m => [URL] -> m (Either NGINX.BatchErrors ())
purgeMany urls =
foldM mAcc (Right ()) urls
where
mAcc :: Either BatchErrors () -> URL -> m (Either NGINX.BatchErrors ())
mAcc :: Either NGINX.BatchErrors () -> URL -> m (Either NGINX.BatchErrors ())
mAcc acc url =
purge url >>= \case
Right () ->
Expand Down

0 comments on commit 9066d25

Please sign in to comment.