diff --git a/doc/langref.html.in b/doc/langref.html.in
index 9247d3bc4394d0022722475aff74ac6dcc7e2174..98db21eebf62c2560a8c6b0c39947e9f0d42a366 100644
--- a/doc/langref.html.in
+++ b/doc/langref.html.in
@@ -1521,7 +1521,8 @@ fn divide(a: i32, b: i32) i32 {
Zig supports arbitrary bit-width integers, referenced by using
an identifier of i or u followed by digits. For example, the identifier
{#syntax#}i7{#endsyntax#} refers to a signed 7-bit integer. The maximum allowed bit-width of an
- integer type is {#syntax#}65535{#endsyntax#}.
+ integer type is {#syntax#}65535{#endsyntax#}. For signed integer types, Zig uses a
+ two's complement representation.