From 676e416c86e2977f76b0cc1b9d3bc2b7ac6d7936 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 02f96ff9d7..f380f72e6d 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
 ! * / % ** *% ||
 + - ++ +% -%
 << >>