From 856270642835978ff244a3bbba972bbd38dc8f71 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Thu, 10 Feb 2022 16:03:24 -0300 Subject: [PATCH] fix(core): documentation links --- core/tauri-utils/src/config.rs | 2 +- core/tauri/src/api/dialog.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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};