Skip to content

Commit

Permalink
docs: Resolving a typo in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
robdmoore authored Jan 7, 2025
1 parent 2b53ea0 commit 6a8fc46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/capabilities/typed-app-clients.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const factory = algorand.client.getTypedAppFactory(HelloWorldAppFactory, {
// Create the app and get a typed app client for the created app (note: this creates a new instance of the app every time,
// you can use .deploy() to deploy idempotently if the app wasn't previously
// deployed or needs to be updated if that's allowed)
const { appClient } = await factory.create()
const { appClient } = await factory.send.create()

// Make a call to an ABI method and print the result
const response = await appClient.hello({ name: 'world' })
Expand Down

0 comments on commit 6a8fc46

Please sign in to comment.