Skip to content

Commit e06f979

Browse files
committed
Correction missing parenthesis
1 parent c1ea0d0 commit e06f979

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transform/scaletransform.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set!(t::ScaleTransform,ρ::Real) = t.s .= [ρ]
2121

2222
_map(t::ScaleTransform, x::AbstractVector{<:Real}) = t(x)
2323
_map(t::ScaleTransform, x::ColVecs) = ColVecs(t(x.X))
24-
_map(t::ScaleTransform, x::RowVecs) = RowVecs(t(x.X)
24+
_map(t::ScaleTransform, x::RowVecs) = RowVecs(t(x.X))
2525

2626
Base.isequal(t::ScaleTransform,t2::ScaleTransform) = isequal(first(t.s),first(t2.s))
2727

0 commit comments

Comments
 (0)