From 0be8cbf55b1c2e5e903cc91a9b905e7eed413e12 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 28 Feb 2021 18:26:18 -0700 Subject: [PATCH] Condense comment --- server/src/objects/Team.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/src/objects/Team.ts b/server/src/objects/Team.ts index 5254361..29984fa 100644 --- a/server/src/objects/Team.ts +++ b/server/src/objects/Team.ts @@ -17,9 +17,7 @@ export class Team { }; - /* - * The getters for the various class properties - */ + /* The getters for the various class properties */ get hand(): string[] { return this._hand; }; get answers(): string[] { return this._answers; }; get questions(): string[] { return this._questions; };