From 763742065fee44d1a448c08884a8ceed89d73042 Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Mon, 23 Sep 2024 15:23:13 +0700 Subject: [PATCH] fix: comment --- pop-api/src/v0/fungibles/mod.rs | 2 +- pop-api/src/v0/fungibles/traits.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pop-api/src/v0/fungibles/mod.rs b/pop-api/src/v0/fungibles/mod.rs index 77f5f32c..032af4d1 100644 --- a/pop-api/src/v0/fungibles/mod.rs +++ b/pop-api/src/v0/fungibles/mod.rs @@ -1,6 +1,6 @@ //! The `fungibles` module provides an API for interacting and managing fungible tokens. //! -//! The API includes the following traits: +//! The API includes the following interfaces: //! 1. PSP-22 //! 2. PSP-22 Metadata //! 3. Management diff --git a/pop-api/src/v0/fungibles/traits.rs b/pop-api/src/v0/fungibles/traits.rs index caa4c68d..92ad55e3 100644 --- a/pop-api/src/v0/fungibles/traits.rs +++ b/pop-api/src/v0/fungibles/traits.rs @@ -1,4 +1,4 @@ -//! A set of traits that implement the PSP22 token standard. +//! Traits that can be used by contracts. Including standard compliant traits. use super::*; use core::result::Result;