diff --git a/DAO/DAO-contract/src/interface.sw b/DAO/DAO-contract/src/interface.sw index a7c5f12d2..1defd35d3 100644 --- a/DAO/DAO-contract/src/interface.sw +++ b/DAO/DAO-contract/src/interface.sw @@ -86,7 +86,7 @@ abi DaoVoting { /// /// # Arguments /// - /// * `proposal_id`: [u64] - Identifier used to specifiy a proposal (0 <= proposal_id < proposal_count). + /// * `proposal_id`: [u64] - Identifier used to specify a proposal (0 <= proposal_id < proposal_count). /// /// # Reverts /// @@ -143,7 +143,7 @@ abi Info { /// /// # Arguments /// - /// * `proposal_id`: [u64] - Identifier used to specifiy a proposal (0 <= proposal_id < proposal_count). + /// * `proposal_id`: [u64] - Identifier used to specify a proposal (0 <= proposal_id < proposal_count). /// * `user`: [Identity] - Identity to look up votes spent on a specified proposal. /// /// # Returns diff --git a/english-auction/auction-contract/src/interface.sw b/english-auction/auction-contract/src/interface.sw index f2ddad4f6..6b12b3dc4 100644 --- a/english-auction/auction-contract/src/interface.sw +++ b/english-auction/auction-contract/src/interface.sw @@ -67,7 +67,7 @@ abi EnglishAuction { /// * When the native asset amount sent and the `sell_asset` enum do not match. /// * When the native asset type sent and the `sell_asset` enum do not match. /// * When the `initial_price` for NFTs is not one. - /// * When transfering of the NFT asset to the contract failed. + /// * When transferring of the NFT asset to the contract failed. #[payable] #[storage(read, write)] fn create( diff --git a/fractional-NFT/README.md b/fractional-NFT/README.md index 0f9e2563c..335396e0d 100644 --- a/fractional-NFT/README.md +++ b/fractional-NFT/README.md @@ -16,7 +16,7 @@ ## Overview -A fractional non-fungible token (F-NFT) is a unique asset that represents a share or portion of ownership over a non-fungible token (NFT). On the Fuel Network, all NFTs and F-NFTs are [Native Assets](https://docs.fuel.network/docs/sway/blockchain-development/native_assets). F-NFTs are often created to sell partial ownership of an NFT on a secondary market, espeically in royalty NFTs to split a profit. +A fractional non-fungible token (F-NFT) is a unique asset that represents a share or portion of ownership over a non-fungible token (NFT). On the Fuel Network, all NFTs and F-NFTs are [Native Assets](https://docs.fuel.network/docs/sway/blockchain-development/native_assets). F-NFTs are often created to sell partial ownership of an NFT on a secondary market, especially in royalty NFTs to split a profit. In this barebones F-NFT example project, where locking a NFT into the vault will issue 100,000,000 shares. When all shares are sent to the vault in the same transaction, the NFT is unlocked and can be withdrawn. diff --git a/oracle/oracle-node/src/main.rs b/oracle/oracle-node/src/main.rs index b53398bd5..198ced6b6 100644 --- a/oracle/oracle-node/src/main.rs +++ b/oracle/oracle-node/src/main.rs @@ -20,7 +20,7 @@ async fn main() { handle.await.unwrap(); } -/// Iniitialize and return objects for use in main +/// Initialize and return objects for use in main fn setup() -> (Oracle, reqwest::Client, Url) { let root_env_path = env::current_dir().unwrap(); let env_path = root_env_path.join("project").join("oracle-node");