diff --git a/index.html b/index.html
index 7c93ae4..8bcdb92 100644
--- a/index.html
+++ b/index.html
@@ -443,7 +443,7 @@
const bytes = new Uint8Array(DATA_SIZE);
for await (const chunk of streamToAsyncIterable(resp.body)) {
if (Math.floor(responseSize/DATA_SIZE*100) < Math.floor((responseSize+chunk.length)/DATA_SIZE*100))
- startBtn.innerText = `Xikipedia is loading... (${Math.floor(responseSize/DATA_SIZE*100)}% of 40MB loaded)`;
+ startBtn.innerText = `Xikipedia is loading...
(${Math.floor(responseSize/DATA_SIZE*100)}% of 40MB loaded)`;
bytes.set(chunk, responseSize);
responseSize += chunk.length;
}