Skip to content

Commit cbd5162

Browse files
committed
format
1 parent 359a86a commit cbd5162

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/broadcast.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ struct axpby{T}
400400
beta::T
401401
end
402402

403-
(xy::axpby)(x, y) = x * xy.alpha + y * xy.beta
403+
(xy::axpby)(x, y) = x * xy.alpha + y * xy.beta
404404

405405
## TODO this code doesn't actually get called
406406
function Base.copyto!(
@@ -425,7 +425,7 @@ function Base.copyto!(
425425
# map!((r, t) -> β * r + α * t, T, T, A)
426426

427427
ab = axpby{promote_type(typeof(α), typeof(β))}(α, β)
428-
map!((r,t) -> ab(t, r), T, T, A)
428+
map!((r, t) -> ab(t, r), T, T, A)
429429
else
430430
bc_bc_α = find_type(Broadcasted, bc_α.args)
431431
if isnothing(α)

0 commit comments

Comments
 (0)