From aecec42d5d4ef1b9ef307114132bd45fc2fd5952 Mon Sep 17 00:00:00 2001 From: nandanpugalia Date: Mon, 15 Jun 2026 13:38:31 +0530 Subject: [PATCH] docs(http): fix connectTimeout option in README (#3451) --- plugins/http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/http/README.md b/plugins/http/README.md index 086d7f25..7b8e3d2f 100644 --- a/plugins/http/README.md +++ b/plugins/http/README.md @@ -62,7 +62,7 @@ Afterwards all the plugin's APIs are available through the JavaScript guest bind import { fetch } from '@tauri-apps/plugin-http' const response = await fetch('http://localhost:3003/users/2', { method: 'GET', - timeout: 30 + connectTimeout: 30 }) ```