Skip to content

fix: typos in documentation files #2544

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 6 commits 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
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function ClaimWithdrawal({ transaction }: ClaimWithdrawalProps) {
useEffect(() => {
const getWithdrawalTxn = async () => {
if (!tokenBridge || !transaction || transaction.details.current_status?.index === undefined) return;
// get withdrawal transaction from the token bridge by receipient address and index
// get withdrawal transaction from the token bridge by recipient address and index
setLoading(true);
try {
const flowRateWithdrawTxnResponse = await tokenBridge?.getFlowRateWithdrawTx({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('errorBoundary', () => {
};
expect(errorBoundary(testFn)).not.toThrowError();
});
it('should not throw an error for an async funtion that errors', () => {
it('should not throw an error for an async function that errors', () => {
const testFn = async () => {
throw new Error('test');
};
Expand Down
2 changes: 1 addition & 1 deletion packages/orderbook/src/test/fulfill.demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function deployAndMintNftContract(wallet: Wallet, provider: JsonRpcProvide
/*
Script:

The new visibile features of the order book since the last demo are:
The new visible features of the order book since the last demo are:
- Interactions exposed through the SDK (plus docs)
- Orders expire
- Orders can be listed and paged
Expand Down