Skip to content

Commit

Permalink
Merge pull request #791 from toofooboo/master
Browse files Browse the repository at this point in the history
chore: fix some typos in comments
  • Loading branch information
K1-R1 authored Apr 22, 2024
2 parents 379ceb7 + 539a02a commit cfe01d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DAO/DAO-contract/src/interface.sw
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion english-auction/auction-contract/src/interface.sw
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion fractional-NFT/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion oracle/oracle-node/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<WalletUnlocked>, reqwest::Client, Url) {
let root_env_path = env::current_dir().unwrap();
let env_path = root_env_path.join("project").join("oracle-node");
Expand Down

0 comments on commit cfe01d2

Please sign in to comment.