From 82c2eb3284e8f0e8330703369f691f98b586c8b6 Mon Sep 17 00:00:00 2001 From: Matt Nield <64328730+matthewjnield@users.noreply.github.com> Date: Mon, 24 Jun 2024 02:01:44 -0400 Subject: [PATCH] chore: Correct grammar typo in documentation of `generate_handler` macro (#10110) --- core/tauri-macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri-macros/src/lib.rs b/core/tauri-macros/src/lib.rs index 656714cb0..a8b9585e5 100644 --- a/core/tauri-macros/src/lib.rs +++ b/core/tauri-macros/src/lib.rs @@ -42,7 +42,7 @@ pub fn mobile_entry_point(attributes: TokenStream, item: TokenStream) -> TokenSt mobile::entry_point(attributes, item) } -/// Accepts a list of commands functions. Creates a handler that allows commands to be called from JS with invoke(). +/// Accepts a list of command functions. Creates a handler that allows commands to be called from JS with invoke(). /// /// # Examples /// ```rust,ignore