Skip to content

Commit

Permalink
Fix typos (#876)
Browse files Browse the repository at this point in the history
This PR focuses on correcting typos and improving clarity in
documentation files.

Signed-off-by: chloefeal <[email protected]>
  • Loading branch information
chloefeal authored Jan 2, 2025
1 parent 4309776 commit dcf20a6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/factory/ProxyFactory.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ describe("ProxyFactory", () => {
).to.be.reverted;

await mock.reset();
// Should be successfull now
// Should be successful now
const proxyAddress = await calculateProxyAddressWithCallback(
factory,
singletonAddress,
Expand Down Expand Up @@ -405,7 +405,7 @@ describe("ProxyFactory", () => {
).to.be.reverted;

await mock.reset();
// Should be successfull now
// Should be successful now
const proxyAddress = await calculateProxyAddressWithCallback(
factory,
singletonAddress,
Expand Down
2 changes: 1 addition & 1 deletion test/handlers/ExtensibleFallbackHandler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("ExtensibleFallbackHandler", () => {
const revertVerifierSource = `
contract RevertVerifier {
function iToHex(bytes memory buffer) public pure returns (string memory) {
// Fixed buffer size for hexadecimal convertion
// Fixed buffer size for hexadecimal conversion
bytes memory converted = new bytes(buffer.length * 2);
bytes memory _base = "0123456789abcdef";
for (uint256 i = 0; i < buffer.length; i++) {
Expand Down
2 changes: 1 addition & 1 deletion tests_deprecated/utils/execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ let executeTransactionWithSigner = async function(signer, safe, subject, account
if (txGasEstimate > 0) {
let estimateDataGasCosts = calcDataGasCosts(estimateData)
let additionalGas = 10000
// To check if the transaction is successfull with the given safeTxGas we try to set a gasLimit so that only safeTxGas is available,
// To check if the transaction is successful with the given safeTxGas we try to set a gasLimit so that only safeTxGas is available,
// when `execute` is triggered in `requiredTxGas`. If the response is `0x` then the inner transaction reverted and we need to increase the amount.
for (let i = 0; i < 100; i++) {
try {
Expand Down

0 comments on commit dcf20a6

Please sign in to comment.