summaryrefslogtreecommitdiff
path: root/systems/_asset/src
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-02-24 12:44:31 +0800
committer魏曹先生 <1992414357@qq.com>2026-02-24 12:44:31 +0800
commitaf17336a184f48b2052f5c33096ae597b119c5dd (patch)
tree67069257a683255435c03b46589db1992865078d /systems/_asset/src
parent0ce73b208e46cdea247bf244363f669757a717ff (diff)
Fix import paths in doc examples
Diffstat (limited to 'systems/_asset/src')
-rw-r--r--systems/_asset/src/asset.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/systems/_asset/src/asset.rs b/systems/_asset/src/asset.rs
index 5cdc1c8..c2b75e6 100644
--- a/systems/_asset/src/asset.rs
+++ b/systems/_asset/src/asset.rs
@@ -119,8 +119,8 @@ where
/// Get the lock file name for the current `ReadOnlyAsset`
/// ```
- /// # use asset::rw::FooData;
- /// # use asset::asset::ReadOnlyAsset;
+ /// # use asset_system::rw::FooData;
+ /// # use asset_system::asset::ReadOnlyAsset;
/// let foo_asset = ReadOnlyAsset::<FooData>::from("my/foo.txt");
/// let lock_path = foo_asset
/// .get_lock_path()
@@ -147,8 +147,8 @@ where
/// Get the name of the temporary editing file for the current `ReadOnlyAsset`
/// ```
- /// # use asset::rw::FooData;
- /// # use asset::asset::ReadOnlyAsset;
+ /// # use asset_system::rw::FooData;
+ /// # use asset_system::asset::ReadOnlyAsset;
/// let foo_asset = ReadOnlyAsset::<FooData>::from("my/foo.txt");
/// let temp_path = foo_asset
/// .get_temp_path()