docs: fixed typo in jsdocs

This commit is contained in:
Richard Moore 2023-07-15 17:46:53 -04:00
parent 492919d14f
commit 19cbcaf3b0

@ -792,7 +792,7 @@ export class BaseContract implements Addressable, EventEmitterable<ContractEvent
async getAddress(): Promise<string> { return await getInternal(this).addrPromise; }
/**
* Return the dedployed bytecode or null if no bytecode is found.
* Return the deployed bytecode or null if no bytecode is found.
*/
async getDeployedCode(): Promise<null | string> {
const provider = getProvider(this.runner);