diff --git a/core/tauri-utils/src/config.rs b/core/tauri-utils/src/config.rs index 74f230cf2..72ed22de7 100644 --- a/core/tauri-utils/src/config.rs +++ b/core/tauri-utils/src/config.rs @@ -988,7 +988,7 @@ pub struct ShellAllowlistConfig { pub execute: bool, /// Enable sidecar execution, allowing the JavaScript layer to spawn a sidecar command, /// an executable that is shipped with the application. - /// For more information see . + /// For more information see . #[serde(default)] pub sidecar: bool, /// Open URL with the user's default application. diff --git a/core/tauri/src/api/dialog.rs b/core/tauri/src/api/dialog.rs index 2d6fa1c28..fedadb99a 100644 --- a/core/tauri/src/api/dialog.rs +++ b/core/tauri/src/api/dialog.rs @@ -101,8 +101,8 @@ macro_rules! file_dialog_builder { /// The blocking APIs will block the current thread to execute instead of relying on callback closures, /// which makes them easier to use. /// -/// **NOTE:** You cannot block the main thread when executing the dialog APIs, so you must use the [`tauri::api::dialog`] methods instead. -/// Examples of main thread context are the [`tauri::App::run`] closure and non-async commmands. +/// **NOTE:** You cannot block the main thread when executing the dialog APIs, so you must use the [`crate::api::dialog`] methods instead. +/// Examples of main thread context are the [`crate::App::run`] closure and non-async commmands. pub mod blocking { use crate::{Runtime, Window}; use std::path::{Path, PathBuf};