From b76c26ff7c77fac70d7f22617f39bd766a9ad66d Mon Sep 17 00:00:00 2001 From: ayntee Date: Fri, 25 Dec 2020 15:20:48 +0400 Subject: [PATCH] docs: capitalize props' description --- src/structures/template.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/structures/template.ts b/src/structures/template.ts index b59d7c9..b137075 100644 --- a/src/structures/template.ts +++ b/src/structures/template.ts @@ -6,27 +6,27 @@ import { Guild } from './guild.ts' import { User } from './user.ts' export class Template extends Base { - /** the template code (unique ID) */ + /** The template code (unique ID) */ code: string - /** template name */ + /** The template name */ name: string - /** the description for the template */ + /** The description for the template */ description: string | null - /** number of times this template has been used */ + /** Number of times this template has been used */ usageCount: number - /** the ID of the user who created the template */ + /** The ID of the user who created the template */ creatorID: string - /** the user who created the template */ + /** The user who created the template */ creator: User - /** when this template was created (in ms) */ + /** When this template was created (in ms) */ createdAt: number - /** when this template was last synced to the source guild (in ms) */ + /** When this template was last synced to the source guild (in ms) */ updatedAt: number - /** the ID of the guild this template is based on */ + /** The ID of the guild this template is based on */ sourceGuildID: string - /** the guild snapshot this template contains */ + /** The guild snapshot this template contains */ serializedSourceGuild: Guild - /** whether the template has unsynced changes */ + /** Whether the template has unsynced changes */ isDirty: boolean | null constructor(client: Client, data: TemplatePayload) {