diff --git a/src/web/app/boot.js b/src/web/app/boot.js
index 7cfa71df218d3bb11afc0ab42c51f79840ba60a7..1049f520a72c0ce0aaae3a201cb355e237e1fef1 100644
--- a/src/web/app/boot.js
+++ b/src/web/app/boot.js
@@ -54,8 +54,8 @@ if (app == 'misskey') {
 }
 
 // Load an app script
-// Note: 'async' makes can load the script asyncly.
-//       'defer' makes can run the script when the dom loaded.
+// Note: 'async' make it possible to load the script asyncly.
+//       'defer' make it possible to run the script when the dom loaded.
 const script = document.createElement('script');
 script.setAttribute('src', `/assets/${app}.${VERSION}.${lang}.js`);
 script.setAttribute('async', 'true');