Skip to content

Commit 3263489

Browse files
authoredMar 5, 2025··
fix: typos in documentation files (#1583)
* Update api-functions.mdx * Update replace-bigints.mdx * Update read-contract-data.mdx
1 parent 3c4695e commit 3263489

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎docs/pages/0_6/docs/query/api-functions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ ponder.get("/account/:address", async (c) => {
173173
const account = await c.db
174174
.select()
175175
.from(Account)
176-
.where(eq(Accout.address, address))
176+
.where(eq(Account.address, address))
177177
.first();
178178

179179
if (account) {

‎docs/pages/0_6/docs/utilities/replace-bigints.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Callout } from "nextra/components";
1414

1515
Replaces all `BigInt{:ts}` values in an object using the provided [replacer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#replacer) function. The target can be a scalar, array, or object.
1616

17-
The `ReplaceBigInt{:ts}` generic type implements the same funtionality at the type level.
17+
The `ReplaceBigInt{:ts}` generic type implements the same functionality at the type level.
1818

1919
## Usage
2020

‎docs/pages/docs/indexing/read-contract-data.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ ponder.on("Blitmap:Mint", async ({ event, context }) => {
160160
abi: context.contracts.Blitmap.abi,
161161
address: context.contracts.Blitmap.address,
162162
functionName: "totalSupply",
163-
// This is set automatically, no need to include it youself.
163+
// This is set automatically, no need to include it yourself.
164164
// blockNumber: event.block.number,
165165
});
166166
});

0 commit comments

Comments
 (0)
Please sign in to comment.