Skip to content

Commit

Permalink
fixed docusarus and markdown processing comp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Nov 20, 2023
1 parent ebc6b5c commit cff6cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web3-eth-contract/src/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class Contract<Abi extends ContractAbi>

private context?: Web3Context;
/**
* Creates a new contract instance with all its methods and events defined in its {@doclink glossary/json_interface | json interface} object.
* Creates a new contract instance with all its methods and events defined in its ABI provided.
*
* ```ts
* new web3.eth.Contract(jsonInterface[, address][, options])
Expand Down Expand Up @@ -467,7 +467,7 @@ export class Contract<Abi extends ContractAbi>
* });
* ```
*
* @returns - Either returns {@link PayableMethodObject} or {@link NonPayableMethodObject} based on the definitions of the {@doclink glossary/json_interface | json interface} of that contract.
* @returns - Either returns {@link PayableMethodObject} or {@link NonPayableMethodObject} based on the definitions of the ABI of that contract.
*/
public get methods() {
return this._methods;
Expand Down

0 comments on commit cff6cc6

Please sign in to comment.