Skip to content

Commit

Permalink
Merge pull request #9 from riehlegroup/jsdoc
Browse files Browse the repository at this point in the history
Apply JSDoc style
  • Loading branch information
dirkriehle authored Oct 22, 2024
2 parents 2b4aa56 + 40e7e4b commit 0115ed5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/adap-b01/names/Name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class Name {
throw new Error("needs implementation");
}

// Returns human-readable representation of Name instance
/** Returns human-readable representation of Name instance */
public asNameString(delimiter: string = this.delimiter): string {
throw new Error("needs implementation");
}
Expand Down
2 changes: 1 addition & 1 deletion src/adap-b02/names/Name.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const ESCAPE_CHARACTER = '\\';

export interface Name {

// Returns human-readable representation of Name instance
/** Returns human-readable representation of Name instance */
asNameString(delimiter?: string): string;

isEmpty(): boolean;
Expand Down

0 comments on commit 0115ed5

Please sign in to comment.