From 38cbbfb99eddfabc61067169ff731d04840db19a Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 12 Jul 2021 11:56:47 +0100 Subject: [PATCH] Add time to comment --- src/Rooms.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Rooms.ts b/src/Rooms.ts index efaca97985..b27d00e804 100644 --- a/src/Rooms.ts +++ b/src/Rooms.ts @@ -34,8 +34,8 @@ export function getDisplayAliasForRoom(room: Room): string { ); } -// The various display alias getters all feed through this one path so there's a -// single place to change the logic. +// The various display alias getters should all feed through this one path so +// there's a single place to change the logic. export function getDisplayAliasForAliasSet(canonicalAlias: string, altAliases: string[]): string { if (AliasCustomisations.getDisplayAliasForAliasSet) { return AliasCustomisations.getDisplayAliasForAliasSet(canonicalAlias, altAliases);