diff --git a/doc/langref.html.in b/doc/langref.html.in
index 9247d3bc43..98db21eebf 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.