Skip to content

Commit a954672

Browse files
committed
fix typos
1 parent 264aa8b commit a954672

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/stage1/broadcast.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using Base.Broadcast: broadcasted, Broadcasted
55
struct FwdBroadcast{N, E, T<:AbstractTangentBundle{N}}
66
f::T
77
end
8-
FwdItFwdBroadcastrate{E}(f::T) where {N, E, T<:AbstractTangentBundle{N}} = FwdBroadcast{N,E,T}(f)
8+
FwdBroadcast{E}(f::T) where {N, E, T<:AbstractTangentBundle{N}} = FwdBroadcast{N,E,T}(f)
99

1010
(f::FwdBroadcast{N,E})(args::AbstractTangentBundle{N}...) where {N,E} = ∂☆{N,E}()(f.f, args...)
1111

src/stage1/forward.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ end
243243
return shuffle_down_bundle(∂☆recurse{2,E}()(map(shuffle_up_bundle, args)...))
244244
end
245245

246-
(::∂☆{N,E})(args::AbstractTangentBundle{N}...) where {N} = ∂☆internal{N,E}()(args...)
246+
(::∂☆{N,E})(args::AbstractTangentBundle{N}...) where {N,E} = ∂☆internal{N,E}()(args...)
247247

248248
# Special case rules for performance
249249
@Base.constprop :aggressive function (::∂☆{N})(f::ATB{N, typeof(getfield)}, x::TangentBundle{N}, s::AbstractTangentBundle{N}) where {N}

0 commit comments

Comments
 (0)