improve doc (#8437)

This commit is contained in:
Guillaume Thiolliere
2021-03-23 17:40:52 +01:00
committed by GitHub
parent 1602f8dd2d
commit d343683ca9
21 changed files with 75 additions and 94 deletions
+3 -3
View File
@@ -19,8 +19,8 @@
//!
//! The Contract module provides functionality for the runtime to deploy and execute WebAssembly smart-contracts.
//!
//! - [`contract::Config`](./trait.Config.html)
//! - [`Call`](./enum.Call.html)
//! - [`Config`]
//! - [`Call`]
//!
//! ## Overview
//!
@@ -336,7 +336,7 @@ pub mod pallet {
/// * `gas_limit`: The gas limit enforced when executing the constructor.
/// * `code`: The contract code to deploy in raw bytes.
/// * `data`: The input data to pass to the contract constructor.
/// * `salt`: Used for the address derivation. See [`Self::contract_address`].
/// * `salt`: Used for the address derivation. See [`Pallet::contract_address`].
///
/// Instantiation is executed as follows:
///