From 8a04799d9f2dd62f9f07379fa8e6d21a60b593b5 Mon Sep 17 00:00:00 2001 From: David Wimmer Date: Tue, 11 Jun 2024 13:34:46 +0200 Subject: [PATCH] Update README.md - 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).