From e2e217052e033183f7fc8ae10be124ac3ebe5a3d Mon Sep 17 00:00:00 2001 From: David Wimmer Date: Tue, 11 Jun 2024 23:19:38 +0200 Subject: [PATCH] Update README.md (#1231) - typo in README.m #L117 --- pkgs/http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/http/README.md b/pkgs/http/README.md index 743805bdf8..0fe9014619 100644 --- a/pkgs/http/README.md +++ b/pkgs/http/README.md @@ -114,7 +114,7 @@ the [`RetryClient()`][new RetryClient] constructor. ## Choosing an implementation -There are multiple implementations of the `package:http` [`Client`][client] interface. By default, `package:http` uses [`BrowserClient`][browserclient] on the web and [`IOClient`][ioclient] on all other platforms. You an choose a different [`Client`][client] implementation based on the needs of your application. +There are multiple implementations of the `package:http` [`Client`][client] interface. By default, `package:http` uses [`BrowserClient`][browserclient] on the web and [`IOClient`][ioclient] on all other platforms. You can choose a different [`Client`][client] implementation based on the needs of your application. You can change implementations without changing your application code, except for a few lines of [configuration](#2-configure-the-http-client).