From f658ea0d99f88a84daa190e3766ce2e26b3083b9 Mon Sep 17 00:00:00 2001 From: Yongjin Huang <20609724+doutv@users.noreply.github.com> Date: Mon, 13 Jun 2022 19:44:50 +0800 Subject: [PATCH] fix pallet_uniques docs link (#11651) --- substrate/frame/uniques/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/substrate/frame/uniques/README.md b/substrate/frame/uniques/README.md index 09f9d34689..8a91a558b5 100644 --- a/substrate/frame/uniques/README.md +++ b/substrate/frame/uniques/README.md @@ -10,9 +10,9 @@ The Uniques module provides functionality for asset management of non-fungible a * Asset Transfer * Asset Destruction -To use it in your runtime, you need to implement the assets [`uniques::Config`](https://docs.rs/pallet-uniques/latest/pallet_uniques/pallet/trait.Config.html). +To use it in your runtime, you need to implement the assets [`uniques::Config`](https://paritytech.github.io/substrate/master/pallet_uniques/pallet/trait.Config.html). -The supported dispatchable functions are documented in the [`uniques::Call`](https://docs.rs/pallet-uniques/latest/pallet_uniques/pallet/enum.Call.html) enum. +The supported dispatchable functions are documented in the [`uniques::Call`](https://paritytech.github.io/substrate/master/pallet_uniques/pallet/enum.Call.html) enum. ### Terminology @@ -66,7 +66,7 @@ The Uniques pallet in Substrate is designed to make the following possible: * `force_create`: Create a new asset class. * `force_asset_status`: Alter the underlying characteristics of an asset class. -Please refer to the [`Call`](https://docs.rs/pallet-assets/latest/pallet_assets/enum.Call.html) enum +Please refer to the [`Call`](https://paritytech.github.io/substrate/master/pallet_uniques/pallet/enum.Call.html) enum and its associated variants for documentation on each function. ## Related Modules