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 @@ -224,7 +224,7 @@ function lookup_doc(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`" )
227
- elseif isdotted
227
+ elseif isdotted && ex != = :( .. )
228
228
op = str[2 : end ]
229
229
return Markdown. parse (" `x $ex y` is akin to `broadcast($op , x, y)`. See [`broadcast`](@ref)." )
230
230
end
Original file line number Diff line number Diff line change @@ -1095,6 +1095,9 @@ end
1095
1095
# Issue 39427
1096
1096
@test occursin (" does not exist" , sprint (show, help_result (" :=" )))
1097
1097
1098
+ # Issue #40563
1099
+ @test occursin (" does not exist" , sprint (show, help_result (" .." )))
1100
+
1098
1101
# Issue #25930
1099
1102
1100
1103
# Brief and extended docs (issue #25930)
You can’t perform that action at this time.
0 commit comments