diff --git a/src/MParT.jl b/src/MParT.jl index 02d9a3d..1e6ab4e 100644 --- a/src/MParT.jl +++ b/src/MParT.jl @@ -334,7 +334,7 @@ end TriangularMap(maps::Vector, move_coeffs::Bool = true) Creates a `TriangularMap` from a vector of `ConditionalMapBase` objects. -The new object takes ownership of the coeffs of the maps in `maps` if +TODO: The new object takes ownership of the coeffs of the maps in `maps` if `move_coeffs` is true. # Examples @@ -352,7 +352,7 @@ julia> trimap = TriangularMap(components); """ function TriangularMap(maps::Vector, move_coeffs::Bool = true) maps = StdVector([map for map in maps]) - TriangularMap(maps, move_coeffs) + TriangularMap(maps) end """