Skip to content

Commit d3e18e9

Browse files
authored
Remove unnecessary trailing comma (#5594)
Before version 1.6.0 Runic left these alone but this was not consistent with how named functions were formatted.
1 parent 35ac93f commit d3e18e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/fake_interaction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function interaction_record(func, figlike, filepath, events::AbstractVector; fps
265265
return
266266
end
267267

268-
interaction_record(figlike, filepath, events::AbstractVector; kwargs...) = interaction_record((args...,) -> nothing, figlike, filepath, events; kwargs...)
268+
interaction_record(figlike, filepath, events::AbstractVector; kwargs...) = interaction_record((args...) -> nothing, figlike, filepath, events; kwargs...)
269269

270270
relative_pos(block, rel) = Point2f(block.layoutobservables.computedbbox[].origin .+ rel .* block.layoutobservables.computedbbox[].widths)
271271

0 commit comments

Comments
 (0)