Skip to content

Commit 3f913f1

Browse files
committed
Minor adjustment in ioutils.jl
1 parent f1c0a45 commit 3f913f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ioutils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ prettyname(obj) = prettyname(typeof(obj))
88
function prettyname(T::Type)
99
name = string(T)
1010
name = replace(name, r"{.*" => "")
11-
replace(name, r".+\." => "")
11+
replace(name, r".*\." => "")
1212
end
1313

1414
# helper function to print the elements of an object

0 commit comments

Comments
 (0)