diff --git a/doc/langref.html.in b/doc/langref.html.in index 300a21fc10..d20b9d4d5b 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -2199,7 +2199,7 @@ unwrapped == 1234{#endsyntax#}
{#syntax#}const value: ?u32 = null;
-value == null{#endsyntax#}
+(value == null) == true{#endsyntax#}
{#syntax#}(1 != 1) == false{#endsyntax#}
{#syntax#}a != null{#endsyntax#}{#syntax#}const value: ?u32 = null;
+(value != null) == false{#endsyntax#}
+ {#syntax#}a > b{#endsyntax#}