Skip to content

Commit 8f74dea

Browse files
Fix format
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 006e8f0 commit 8f74dea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rulesets/LinearAlgebra/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function rrule(::typeof(svdvals), A::AbstractMatrix{<:Number})
287287
project_A = ProjectTo(A)
288288
function svdvals_pullback(s̄)
289289
=isa AbstractZero ?: Diagonal(unthunk(s̄))
290-
(NoTangent(), project_A(U ** Vt))
290+
return (NoTangent(), project_A(U ** Vt))
291291
end
292292
return F.S, svdvals_pullback
293293
end

0 commit comments

Comments
 (0)