浏览代码

docs: Fix PathResolver doc comment (#8876)

Fabian-Lars 1 年之前
父节点
当前提交
ed33b851c7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/tauri/src/path/desktop.rs

+ 1 - 1
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<R: Runtime>(pub(crate) AppHandle<R>);
 
 impl<R: Runtime> PathResolver<R> {