From 91d0c2d54dc8d154fe3a7c0455f1f067d57aa094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Tue, 16 Jan 2024 15:37:09 +0100 Subject: [PATCH] Fix printing of SRow in compound structures (#1350) --- src/Sparse/Row.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sparse/Row.jl b/src/Sparse/Row.jl index 060a677e57..a913436839 100644 --- a/src/Sparse/Row.jl +++ b/src/Sparse/Row.jl @@ -131,7 +131,7 @@ end ################################################################################ function show(io::IO, A::SRow{T}) where T - print(io, "Sparse row with positions $(A.pos) and values $(A.values)\n") + print(io, "Sparse row with positions $(A.pos) and values $(A.values)") end ################################################################################