Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Apr 22, 2024
1 parent 879df1c commit df30db4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ While `Paima Engine SDK` refers to these modules:

- `Paima Executors` (The library which enables building `RoundExecutor`s and `MatchExecutor`s)
- `Paima Middleware Core` (The library which aids connecting frontends to Paima logic)
- `Paima Utils` (The Library which holds auxillary functions between the other modules)
- `Paima Utils` (The Library which holds auxiliary functions between the other modules)
- `Paima Utils Backend` (Utils which are purely for backend (and may not work in a browser environment))
- `Paima Build Utils` (Helps build the Paima components used user projects - not included as part of the `@paima/sdk` package)
- `Paima Prando` (Custom fork of a deterministic pseudo-RNG generator library)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ contract InverseAppProjected1155 is IInverseAppProjected1155, ERC1155, Ownable {
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to consecutive range of tokens. Can be overriden in inheriting contract.
/// an update to consecutive range of tokens. Can be overridden in inheriting contract.
function updateMetadataBatch(uint256 _fromTokenId, uint256 _toTokenId) public virtual {
emit BatchMetadataUpdate(_fromTokenId, _toTokenId);
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to a single token. Can be overriden in inheriting contract.
/// an update to a single token. Can be overridden in inheriting contract.
function updateMetadata(uint256 _tokenId) public virtual {
emit MetadataUpdate(_tokenId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ contract InverseAppProjectedNft is IInverseAppProjectedNft, ERC721, Ownable {
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to consecutive range of tokens. Can be overriden in inheriting contract.
/// an update to consecutive range of tokens. Can be overridden in inheriting contract.
function updateMetadataBatch(uint256 _fromTokenId, uint256 _toTokenId) public virtual {
emit BatchMetadataUpdate(_fromTokenId, _toTokenId);
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to a single token. Can be overriden in inheriting contract.
/// an update to a single token. Can be overridden in inheriting contract.
function updateMetadata(uint256 _tokenId) public virtual {
emit MetadataUpdate(_tokenId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ contract InverseBaseProjected1155 is IInverseBaseProjected1155, ERC1155, Ownable
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to consecutive range of tokens. Can be overriden in inheriting contract.
/// an update to consecutive range of tokens. Can be overridden in inheriting contract.
function updateMetadataBatch(uint256 _fromTokenId, uint256 _toTokenId) public virtual {
emit BatchMetadataUpdate(_fromTokenId, _toTokenId);
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to a single token. Can be overriden in inheriting contract.
/// an update to a single token. Can be overridden in inheriting contract.
function updateMetadata(uint256 _tokenId) public virtual {
emit MetadataUpdate(_tokenId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ contract InverseBaseProjectedNft is IInverseBaseProjectedNft, ERC721, Ownable {
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to consecutive range of tokens. Can be overriden in inheriting contract.
/// an update to consecutive range of tokens. Can be overridden in inheriting contract.
function updateMetadataBatch(uint256 _fromTokenId, uint256 _toTokenId) public virtual {
emit BatchMetadataUpdate(_fromTokenId, _toTokenId);
}

/// @dev Function that emits an event to notify third-parties (e.g. NFT marketplaces) about
/// an update to a single token. Can be overriden in inheriting contract.
/// an update to a single token. Can be overridden in inheriting contract.
function updateMetadata(uint256 _tokenId) public virtual {
emit MetadataUpdate(_tokenId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class ParallelEvmFunnel extends BaseFunnel implements ChainFunnel {
}
}

// the blocks that didn't pass the the filter are kept in the cache, so that
// the blocks that didn't pass the filter are kept in the cache, so that
// the block funnel doesn't get them again.
chainData.forEach(_ => cachedState.bufferedChainData.shift());

Expand Down

0 comments on commit df30db4

Please sign in to comment.