Skip to content

Commit

Permalink
phrasing improvments
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed Oct 26, 2023
1 parent 5c48f81 commit c87a5b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/hardhat/contracts/AutomationConsumer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ contract AutomationConsumer is AutomationCompatibleInterface, Ownable {

/** This function is called automatically by chainlink keeper nodes
*
* @param checkData not used in this example, but it can be set when the Upkeep is registered
* param checkData not used in this example, but it can be set when the Upkeep is registered
* @return upkeepNeeded - if true, performUpkeep() will be called
* @return performData - data passed to performUpkeep() (can be dynamically computed within checkUpkeep())
*/

function checkUpkeep(
bytes memory checkData
bytes memory /* checkData */
)
public
view
Expand Down
5 changes: 1 addition & 4 deletions packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ const Home: NextPage = () => {
<h1 className="text-center text-5xl font-bold mb-10">Speedrun Chainlink</h1>
<div className="text-center text-5xl mb-10">🏃💨</div>
<p className="text-2xl text-center mb-10">
A beginner&apos;s guide to using chainlink products with{" "}
<Link className="text-accent" href="https://github.com/scaffold-eth/scaffold-eth-2">
Scaffold-ETH 2
</Link>
A beginner&apos;s guide to integrating chainlink products with smart contracts
</p>
<div className="grid grid-cols-1 gap-10 px-0 lg:px-24">
{PRODUCTS.map(product => (
Expand Down

0 comments on commit c87a5b4

Please sign in to comment.