From c382ab5ecaaee78cddfcb79f3408bfbc9513d083 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Wed, 14 Feb 2024 11:49:38 +0000 Subject: [PATCH] apply small fix in getPlatformProxy's dispose text (#12975) --- content/workers/wrangler/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/workers/wrangler/api.md b/content/workers/wrangler/api.md index df840937de3849f..18bd7e7f5fdecb5 100644 --- a/content/workers/wrangler/api.md +++ b/content/workers/wrangler/api.md @@ -299,7 +299,7 @@ const platform = await getPlatformProxy(options); * `dispose()` {{}}() => Promise\{{}} * Terminates the underlying `workerd` process. - * Call this after the platform proxy is no longer required by the program. If you are running a long running process (such as a dev server) that can indefinitely make use of bindings, you don't need to call this function. + * Call this after the platform proxy is no longer required by the program. If you are running a long running process (such as a dev server) that can indefinitely make use of the proxy, you do not need to call this function. {{}}