diff --git a/ERCS/erc-7208.md b/ERCS/erc-7208.md index c89e4700e9e..b85e5ddf573 100644 --- a/ERCS/erc-7208.md +++ b/ERCS/erc-7208.md @@ -127,7 +127,7 @@ interface IDataObject { **Data Objects** CAN receive `read()`, `write()`, or any other custom requests from a **Data Manager** requesting access to a storage structure indexed by a **Data Point**. -As such, **Data Objects** respond to a gating mechanism given by a single **Data Index**. The function `setDIImplementation()` SHOULD enable the delegation of the the management function to an `IDataIndex` implementation. +As such, **Data Objects** respond to a gating mechanism given by a single **Data Index**. The function `setDIImplementation()` SHOULD enable the delegation of the management function to an `IDataIndex` implementation. diff --git a/assets/erc-7208/contracts/dataobjects/MinimalisticFungibleFractionsDO.sol b/assets/erc-7208/contracts/dataobjects/MinimalisticFungibleFractionsDO.sol index ee5d663732f..82e482b1087 100644 --- a/assets/erc-7208/contracts/dataobjects/MinimalisticFungibleFractionsDO.sol +++ b/assets/erc-7208/contracts/dataobjects/MinimalisticFungibleFractionsDO.sol @@ -12,7 +12,7 @@ import {ChainidTools} from "../utils/ChainidTools.sol"; /** * @title Minimalistic Fungible Fractions Data Object - * @notice DataObject with base funtionality of Fungible Fractions (Can be used for ERC1155-Compatible DataManagers) + * @notice DataObject with base functionality of Fungible Fractions (Can be used for ERC1155-Compatible DataManagers) * @dev This contract exposes base functionality of Fungible Fraction tokens, including * balanceOf, totalSupply, exists, transferFrom, mint, burn and their batch variants. * diff --git a/assets/erc-7208/contracts/interfaces/IFractionTransferEventEmitter.sol b/assets/erc-7208/contracts/interfaces/IFractionTransferEventEmitter.sol index d5347e11844..28ee5ac42a2 100644 --- a/assets/erc-7208/contracts/interfaces/IFractionTransferEventEmitter.sol +++ b/assets/erc-7208/contracts/interfaces/IFractionTransferEventEmitter.sol @@ -6,7 +6,7 @@ pragma solidity ^0.8.22; * @notice Interface defines functions to emit events when fractions are transferred */ interface IFractionTransferEventEmitter { - /// @dev Emmited when caller is not one of expected addresses + /// @dev Emitted when caller is not one of expected addresses error WrongTransferNotificationSource(); /**