diff --git a/doc/langref.html.in b/doc/langref.html.in
index 6821dfd9f914a2d9e39c16173c7390ec7853cfd3..d181844e90fc10f18444e8e9f461cd8c8131a1a0 100644
--- a/doc/langref.html.in
+++ b/doc/langref.html.in
@@ -263,7 +263,7 @@ pub fn main() !void {
Next, a {#link|public function|Functions#}, {#syntax#}pub fn{#endsyntax#}, named main
is declared. The main function is necessary because it tells the Zig compiler where the start of
the program exists. Programs designed to be executed will need a {#syntax#}pub fn main{#endsyntax#} function.
- For more advanced Zig use cases, Zig offers other features to inform the compiler where the start of
+ For more advanced use cases, Zig offers other features to inform the compiler where the start of
the program exists. Libraries, on the other hand, do not need a main function because
library code is usually called by other programs.