From cad2e8da9d10fc6f591b8da6396191735d795c80 Mon Sep 17 00:00:00 2001 From: Martin Wickham Date: Wed, 9 Dec 2020 00:58:24 -0600 Subject: [PATCH] Fix operator precedence documentation --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index 83cd50a510..4213fd721e 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -1743,8 +1743,8 @@ const B = error{Two}; {#header_open|Precedence#}
{#syntax#}x() x[] x.y
 a!b
-!x -x -%x ~x &x ?x
 x{} x.* x.?
+!x -x -%x ~x &x ?x
 ! * / % ** *% ||
 + - ++ +% -%
 << >>