Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix grammatical error in compile-time post (#56)

authored by

Louis Escher and committed by
GitHub
c149d758 1987d000

+1 -1
+1 -1
website/content/news/maudit-compile-time.md
··· 16 16 - The slow completely cold compile and download are rare (much like you don't run `npm install` before every build) 17 17 - Incremental warm builds are not that slow (< 3s~), and do not necessarily get slower as your website gets larger. The same blog with 5000 and 5 articles compile in the same amount of time (unless they're 5000 different pages and layouts, in which case, well) 18 18 19 - And most importantly: **Not every change require recompilation.** Updating your Markdown content, updating frontend JavaScript or CSS, updating some images assets all don't require recompilation and are most definitely more common changes than changing your project's logic. 19 + And most importantly: **Not every change requires recompilation.** Updating your Markdown content, updating frontend JavaScript or CSS, updating some images assets all don't require recompilation and are most definitely more common changes than changing your project's logic. 20 20 21 21 ## Workarounds 22 22