docs(opener): fix openUrl example name (#3643)

This commit is contained in:
Twinkle
2025-12-10 18:13:46 +08:00
committed by GitHub
parent a0e6688753
commit 50994c74dc

View File

@@ -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');
```
</TabItem>