From af17336a184f48b2052f5c33096ae597b119c5dd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 24 Feb 2026 12:44:31 +0800 Subject: Fix import paths in doc examples --- systems/_asset/src/asset.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'systems/_asset/src') 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::::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::::from("my/foo.txt"); /// let temp_path = foo_asset /// .get_temp_path() -- cgit