From 40e7e4b6b139145fdbe06a3dfafd4a6ed3e59a36 Mon Sep 17 00:00:00 2001 From: Johannes Jablonski <41482626+joluj@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:21:49 +0200 Subject: [PATCH] Apply JSDoc style --- src/adap-b01/names/Name.ts | 2 +- src/adap-b02/names/Name.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;