fix(core): documentation links

This commit is contained in:
Lucas Nogueira 2022-02-10 16:03:24 -03:00
parent d5400a3d62
commit 8562706428
No known key found for this signature in database
GPG Key ID: 2714B66BCFB01F7F
2 changed files with 3 additions and 3 deletions

View File

@ -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 <https://tauri.studio/en/docs/usage/guides/bundler/sidecar>.
/// For more information see <https://tauri.studio/docs/guides/bundler/sidecar/>.
#[serde(default)]
pub sidecar: bool,
/// Open URL with the user's default application.

View File

@ -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};