diff --git a/plugs/core/stats.ts b/plugs/core/stats.ts index fb56176..27307a2 100644 --- a/plugs/core/stats.ts +++ b/plugs/core/stats.ts @@ -16,6 +16,6 @@ export async function statsCommand() { const wordCount = countWords(text); const time = readingTime(wordCount); await editor.flashNotification( - `${wordCount} words; ${time} minutes read; ${allPages.length} total pages in space.`, + `${text.length} characters; ${wordCount} words; ${time} minutes read; ${allPages.length} total pages in space.`, ); }