Skip to content

Commit

Permalink
Fix comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed Feb 15, 2024
1 parent 29bf7db commit db67192
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/address.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ export class Address {
}

/**
* Creates an empty address object. Generally speaking, this should not be used in client code (internal use only).
* Creates an empty address object.
* Generally speaking, this should not be used by client code (internal use only).
*/
static empty(): Address {
return new Address("");
Expand Down Expand Up @@ -229,7 +230,8 @@ export class Address {
}

/**
* Creates the Zero address (the one that should be used when deploying smart contracts)
* Creates the Zero address (the one that should be used when deploying smart contracts).
* Generally speaking, this should not be used by client code (internal use only).
*/
static Zero(): Address {
return new Address("0".repeat(64));
Expand Down

0 comments on commit db67192

Please sign in to comment.