Skip to content

Commit dc7bf6b

Browse files
committed
oops. Fix missing end
1 parent b72df42 commit dc7bf6b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/src/maths/propagators.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,10 @@ end
191191
function ChainRulesCore.rrule(m::Multiplier, y)
192192
product = m(y)
193193
function pullback(Δproduct)
194-
∂self = Tangent{typeof(m)}(; x = Δproduct * y')
195-
∂y = m.x' * Δproduct
196-
return ∂self, ∂y
194+
∂self = Tangent{typeof(m)}(; x = Δproduct * y')
195+
∂y = m.x' * Δproduct
196+
return ∂self, ∂y
197+
end
197198
return product, pullback
198199
end
199200
```

0 commit comments

Comments
 (0)