diff --git a/doc/langref.html.in b/doc/langref.html.in index 300a21fc106b4516865f942724e28cd4d4882354..d20b9d4d5b10a82b3a4776eec61b4f27eeb53ecb 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#}