Skip to content

chore: fix some minor issues in comments #105

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

Open
wants to merge 1 commit 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 ccip/estimate-gas/foundry/src/Sender.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {SafeERC20} from "@chainlink/contracts/src/v0.8/vendor/openzeppelin-solid
* DO NOT USE THIS CODE IN PRODUCTION.
*/

/// @title - A simple sender contract for sending/receving string data across chains.
/// @title - A simple sender contract for sending/receiving string data across chains.
contract Sender is OwnerIsCreator {
using SafeERC20 for IERC20;

Expand Down
2 changes: 1 addition & 1 deletion ccip/estimate-gas/hardhat/contracts/Sender.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {SafeERC20} from "@chainlink/contracts/src/v0.8/vendor/openzeppelin-solid
* DO NOT USE THIS CODE IN PRODUCTION.
*/

/// @title - A simple sender contract for sending/receving string data across chains.
/// @title - A simple sender contract for sending/receiving string data across chains.
contract Sender is OwnerIsCreator {
using SafeERC20 for IERC20;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ abstract contract StdAssertions {
vm.assertApproxEqRelDecimal(left, right, maxPercentDelta, decimals, err);
}

// Inhertied from DSTest, not used but kept for backwards-compatibility
// Inherited from DSTest, not used but kept for backwards-compatibility
function checkEq0(bytes memory left, bytes memory right) internal pure returns (bool) {
return keccak256(left) == keccak256(right);
}
Expand Down
2 changes: 1 addition & 1 deletion lottery/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const config: HardhatUserConfig = {
defaultNetwork: "hardhat",
networks: {
hardhat: {
// // If you want to do some forking, uncomment this
// If you want to do some forking, uncomment this
// forking: {
// url: MAINNET_RPC_URL
// }
Expand Down