Skip to content

Commit f2fed2d

Browse files
committed
spelling
1 parent 6afb479 commit f2fed2d

9 files changed

Lines changed: 29 additions & 21 deletions

contracts/ConfidentialWrapper.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2020
*/
2121

22+
// cspell:words IERC
23+
2224
pragma solidity ^0.8.27;
2325

2426
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

contracts/core/ConfidentialTokenCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2121
*/
2222

23-
// cspell:words ECIES
23+
// cspell:words ECIES mixedcase
2424

2525
pragma solidity ^0.8.27;
2626

contracts/core/ConfidentialWrapperCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2020
*/
2121

22-
// cspell:words IERC20
22+
// cspell:words IERC20 mixedcase
2323

2424
pragma solidity ^0.8.27;
2525

contracts/core/MintableConfidentialTokenCore.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2020
*/
2121

22+
// cspell:words mixedcase
23+
2224
pragma solidity ^0.8.27;
2325

2426
import { IMintableERC20 } from "../interfaces/IMintableERC20.sol";

contracts/eip3009/ConfidentialEIP3009Upgradeable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// This file extends the original EIP-3009 implementation with BITE functionality for SKALE chains.
2424
// ----------------------------------------------------------------------------
2525

26-
// cspell:words typehash
26+
// cspell:words typehash mixedcase
2727

2828
pragma solidity ^0.8.27;
2929

contracts/eip3009/EIP3009Upgradeable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// /licenses/LICENSE_COINBASE
3131
// ----------------------------------------------------------------------------
3232

33-
// cspell:words typehash
33+
// cspell:words typehash initializable mixedcase
3434

3535
pragma solidity ^0.8.27;
3636

contracts/interfaces/IConfidentialWrapperUpgradeable.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2020
*/
2121

22+
// cspell:words IERC
23+
2224
pragma solidity ^0.8.27;
2325

2426
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

contracts/upgradeable/ConfidentialWrapperUpgradeable.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* along with confidential-token. If not, see <https://www.gnu.org/licenses/>.
2121
*/
2222

23+
// cspell:words IERC
24+
2325
pragma solidity ^0.8.27;
2426

2527
import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

cspell.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@
2525
"lib"
2626
],
2727
"overrides": [
28-
{
29-
"filename": "**/EIP3009.md",
30-
"words": ["typehash"]
31-
},
32-
{
33-
"filename": "**/ConfidentialEIP3009.md",
34-
"words": ["typehash"]
35-
},
36-
{
37-
"filename": "licenses/LICENSE_COINBASE",
38-
"words": ["SECZ"]
39-
},
40-
{
41-
"filename": "docs/**/*.md",
42-
"words": ["ECIES", "IERC20"]
43-
}
44-
]
28+
{
29+
"filename": "**/EIP3009Upgradeable.md",
30+
"words": ["typehash"]
31+
},
32+
{
33+
"filename": "**/ConfidentialEIP3009Upgradeable.md",
34+
"words": ["typehash"]
35+
},
36+
{
37+
"filename": "licenses/LICENSE_COINBASE",
38+
"words": ["SECZ"]
39+
},
40+
{
41+
"filename": "docs/**/*.md",
42+
"words": ["ECIES", "IERC20"]
43+
}
44+
]
4545
}

0 commit comments

Comments
 (0)