From 21223a13b5a6a3bca53bdccc1b0f13dc915e47b6 Mon Sep 17 00:00:00 2001 From: Twinkle Date: Wed, 10 Dec 2025 17:48:26 +0800 Subject: [PATCH] docs(opener): fix openUrl example name --- src/content/docs/plugin/opener.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/plugin/opener.mdx b/src/content/docs/plugin/opener.mdx index e26f895d70..3850e4e3a2 100644 --- a/src/content/docs/plugin/opener.mdx +++ b/src/content/docs/plugin/opener.mdx @@ -90,7 +90,7 @@ await openPath('/path/to/file'); // opens a file using `vlc` command on Windows: await openPath('C:/path/to/file', 'vlc'); // opens a URL using the default program: -await openURL('https://tauri.app'); +await openUrl('https://tauri.app'); ```