summaryrefslogtreecommitdiff
path: root/systems/_asset/src
diff options
context:
space:
mode:
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()