Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs fix spelling issues #661

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/eip/interface/IERC721Supply.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

/// @title ERC-721 Non-Fungible Token Standard, optional supplu extension
/// @title ERC-721 Non-Fungible Token Standard, optional supply extension
/// @dev See https://eips.ethereum.org/EIPS/eip-721
/// Note: the ERC-165 identifier for this interface is 0x780e9d63.
/* is ERC721 */
Expand Down
2 changes: 1 addition & 1 deletion contracts/extension/DelayedReveal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ abstract contract DelayedReveal is IDelayedReveal {
assembly {
// Set result to free memory pointer
result := mload(0x40)
// Increase free memory pointer by lenght + 32
// Increase free memory pointer by length + 32
mstore(0x40, add(add(result, length), 32))
// Set result length
mstore(result, length)
Expand Down
4 changes: 2 additions & 2 deletions contracts/extension/Staking1155.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract contract Staking1155 is ReentrancyGuard, IStaking1155 {
/// @dev Flag to check direct transfers of staking tokens.
uint8 internal isStaking = 1;

///@dev Next staking condition Id. Tracks number of conditon updates so far.
///@dev Next staking condition Id. Tracks number of condition updates so far.
uint64 private nextDefaultConditionId;

///@dev List of token-ids ever staked.
Expand All @@ -32,7 +32,7 @@ abstract contract Staking1155 is ReentrancyGuard, IStaking1155 {
///@dev Mapping from default condition-id to default condition.
mapping(uint64 => StakingCondition) private defaultCondition;

///@dev Mapping from token-id to next staking condition Id for the token. Tracks number of conditon updates so far.
///@dev Mapping from token-id to next staking condition Id for the token. Tracks number of condition updates so far.
mapping(uint256 => uint64) private nextConditionId;

///@dev Mapping from token-id and staker address to Staker struct. See {struct IStaking1155.Staker}.
Expand Down
Loading