From e53a40658d40a91bfecc005ef1be712bbddbf336 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Thu, 18 Mar 2021 10:55:51 +0900
Subject: [PATCH] format

---
 src/misc/cache.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/misc/cache.ts b/src/misc/cache.ts
index ccc5f01ff7..5b7017a3b9 100644
--- a/src/misc/cache.ts
+++ b/src/misc/cache.ts
@@ -7,7 +7,7 @@ export class Cache<T> {
 		this.lifetime = lifetime;
 	}
 
-	public set(key: string | null, value: T):void {
+	public set(key: string | null, value: T): void {
 		this.cache.set(key, {
 			date: Date.now(),
 			value