docs(tauri-macros): fix typo in documentation of do_menu_item macro (#10200)

This commit is contained in:
zrq8 2024-07-05 00:03:26 +08:00 committed by GitHub
parent 94136578bc
commit 24aaf0f5af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -109,7 +109,7 @@ pub fn default_runtime(attributes: TokenStream, input: TokenStream) -> TokenStre
/// ```
/// but you can't have mixed negations and positive kinds.
/// ```ignore
/// do_menu_item!(resources_table, rid, kind, |i| i.set_text(text), !Check | Submeun);
/// do_menu_item!(resources_table, rid, kind, |i| i.set_text(text), !Check | Submenu);
/// ```
///
/// #### Example