diff --git a/src/adap-b01/names/Name.ts b/src/adap-b01/names/Name.ts index 8fddf68..ad3c599 100644 --- a/src/adap-b01/names/Name.ts +++ b/src/adap-b01/names/Name.ts @@ -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"); } diff --git a/src/adap-b02/names/Name.ts b/src/adap-b02/names/Name.ts index dd2ea06..ed3b3a4 100644 --- a/src/adap-b02/names/Name.ts +++ b/src/adap-b02/names/Name.ts @@ -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;