diff --git a/doc/langref.html.in b/doc/langref.html.in
index 506ecbc4b3d4..fe2104b3e97a 100644
--- a/doc/langref.html.in
+++ b/doc/langref.html.in
@@ -6512,7 +6512,7 @@ fn cmpxchgWeakButNotAtomic(comptime T: type, ptr: *T, expected_value: T, new_val
- If a call to {#syntax#}@import{#endsyntax#} is analyzed, the file being imported is analyzed.
- If a type (including a file) is analyzed, all {#syntax#}comptime{#endsyntax#} and {#syntax#}export{#endsyntax#} declarations within it are analyzed.
- - If a type (including a file) is analyzed, and the compilation is for a {#link|test|Zig Test#}, and the module the type is within is the root module of the compilation, then all {#syntax#}test{#endsyntax#} declarations within it are also analyzed.
+ - If a type (including a file) is analyzed, and the compilation is for a {#link|test|Zig Test#}, and the type is within is the root module of the compilation, then all {#syntax#}test{#endsyntax#} declarations within it are also analyzed.
- If a reference to a named declaration (i.e. a usage of it) is analyzed, the declaration being referenced is analyzed. Declarations are order-independent, so this reference may be above or below the declaration being referenced, or even in another file entirely.