Skip to content

Commit 01d948c

Browse files
committed
Fix lint
1 parent 06234db commit 01d948c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/cw22/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/*!
22
CW22 defines a way for a contract to declare which interfaces do the contract implement
3-
This standard is inspired by the EIP-165 from Ethereum. Originally it was proposed to
3+
This standard is inspired by the EIP-165 from Ethereum. Originally it was proposed to
44
be merged into CW2: Contract Info, then it is splitted to a separated cargo to keep CW2
5-
being backward compatible.
5+
being backward compatible.
66
7-
Each supported interface contains a string value pointing to the corresponding cargo package
7+
Each supported interface contains a string value pointing to the corresponding cargo package
88
and a specific release of the package. There is also a function to check whether the contract
99
support a specific version of an interface or not.
1010
1111
The version string for each interface follows Semantic Versioning standard. More info is in:
1212
https://docs.rs/semver/latest/semver/
13-
*/
13+
*/
1414

1515
mod query;
1616

@@ -38,7 +38,7 @@ pub struct ContractSupportedInterface {
3838
pub version: String,
3939
}
4040

41-
/// set_contract_supported_interface should be used in instantiate to store the original version
41+
/// set_contract_supported_interface should be used in instantiate to store the original version
4242
/// of supported interfaces. It should also be used after every migration.
4343
pub fn set_contract_supported_interface(
4444
store: &mut dyn Storage,

0 commit comments

Comments
 (0)