From 62be2f64c2accfb5aca7f669d8480d0160a4a60a Mon Sep 17 00:00:00 2001
From: ha-dai <contact@haradai.net>
Date: Sat, 25 Mar 2017 21:14:38 +0900
Subject: [PATCH] Fix typo.

---
 src/web/app/common/scripts/check-for-update.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/web/app/common/scripts/check-for-update.js b/src/web/app/common/scripts/check-for-update.js
index 9cbe482ed..7f4c1cdee 100644
--- a/src/web/app/common/scripts/check-for-update.js
+++ b/src/web/app/common/scripts/check-for-update.js
@@ -7,7 +7,7 @@ export default function() {
 		res.json().then(meta => {
 			if (meta.version != VERSION) {
 				localStorage.setItem('should-refresh', 'true');
-				alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在を${VERSION}利用中)。\nページを再度読み込みすると更新が適用されます。`);
+				alert(`Misskeyの新しいバージョンがあります(${meta.version}。現在${VERSION}を利用中)。\nページを再度読み込みすると更新が適用されます。`);
 			}
 		});
 	});