File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ function lookup_doc(ex)
220
220
if isa (ex, Symbol) && Base. isoperator (ex)
221
221
str = string (ex)
222
222
isdotted = startswith (str, " ." )
223
- if endswith (str, " =" ) && Base. operator_precedence (ex) == Base. prec_assignment
223
+ if endswith (str, " =" ) && Base. operator_precedence (ex) == Base. prec_assignment && ex != = :( := )
224
224
op = str[1 : end - 1 ]
225
225
eq = isdotted ? " .=" : " ="
226
226
return Markdown. parse (" `x $op = y` is a synonym for `x $eq x $op y`" )
Original file line number Diff line number Diff line change @@ -1092,6 +1092,9 @@ end
1092
1092
@test occursin (" identical" , sprint (show, help_result (" ===" )))
1093
1093
@test occursin (" broadcast" , sprint (show, help_result (" .<=" )))
1094
1094
1095
+ # Issue 39427
1096
+ @test occursin (" does not exist" , sprint (show, help_result (" :=" )))
1097
+
1095
1098
# Issue #25930
1096
1099
1097
1100
# Brief and extended docs (issue #25930)
You can’t perform that action at this time.
0 commit comments