Skip to content

Commit

Permalink
chore: doc tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Feb 13, 2025
1 parent c6b483f commit dd6f34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/code/classes/types_account_manager.AccountManager.md
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ const signer = accountManager.random() // Can be anything that returns a `algosd
accountManager.setDefaultSigner(signer)

// When signing a transaction, if there is no signer registered for the sender then the default signer will be used
const signer = accountManager.getSigner("{SENDERADDRESS}")
const signer = accountManager.getSigner("SENDERADDRESS")
```

#### Defined in
Expand Down
2 changes: 1 addition & 1 deletion src/types/account-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class AccountManager {
* accountManager.setDefaultSigner(signer)
*
* // When signing a transaction, if there is no signer registered for the sender then the default signer will be used
* const signer = accountManager.getSigner("{SENDERADDRESS}")
* const signer = accountManager.getSigner("SENDERADDRESS")
* ```
* @returns The `AccountManager` so method calls can be chained
*/
Expand Down

0 comments on commit dd6f34f

Please sign in to comment.