From ed33b851c774c98f4309f7f4315773bf8ebb9318 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Sun, 18 Feb 2024 14:43:26 +0100 Subject: [PATCH] docs: Fix PathResolver doc comment (#8876) --- core/tauri/src/path/desktop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri/src/path/desktop.rs b/core/tauri/src/path/desktop.rs index 3a81b358f..ef57e2a41 100644 --- a/core/tauri/src/path/desktop.rs +++ b/core/tauri/src/path/desktop.rs @@ -6,7 +6,7 @@ use super::{Error, Result}; use crate::{AppHandle, Manager, Runtime}; use std::path::PathBuf; -/// A helper class to access the mobile camera APIs. +/// The path resolver is a helper class for general and application-specific path APIs. pub struct PathResolver(pub(crate) AppHandle); impl PathResolver {