Skip to content

Commit

Permalink
Fix comments that reference DidUri
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Hinek <[email protected]>
  • Loading branch information
frankhinek committed Feb 3, 2024
1 parent c469775 commit 85ec434
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/dids/src/did.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class Did {
params?: Record<string, string>;

/**
* Constructs a new `DidUri` instance from individual components.
* Constructs a new `Did` instance from individual components.
*
* @param params - An object containing the parameters to be included in the DID URI.
* @param params.method - The name of the DID method.
Expand Down
4 changes: 2 additions & 2 deletions packages/dids/src/methods/did-method.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface BearerDid {
/** {@inheritDoc DidMetadata} */
metadata: DidMetadata;

/** {@inheritDoc DidUri#uri} */
/** {@inheritDoc Did#uri} */
uri: string;
}

Expand Down Expand Up @@ -216,7 +216,7 @@ export interface DidMethodResolver {
* ```
*/
export interface PortableDid {
/** {@inheritDoc DidUri#uri} */
/** {@inheritDoc Did#uri} */
uri?: string;

/**
Expand Down

0 comments on commit 85ec434

Please sign in to comment.