From f8f70888d8cddbe2432f835e1674b7373634fbb5 Mon Sep 17 00:00:00 2001 From: Nathan Daly Date: Tue, 24 Jul 2018 16:00:25 -0400 Subject: [PATCH] Fix docstring output to fix broken doctest --- base/path.jl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/base/path.jl b/base/path.jl index 61b2089a6b106..21d5085bff95a 100644 --- a/base/path.jl +++ b/base/path.jl @@ -213,7 +213,11 @@ the path, including the root directory if present. # Examples ```jldoctest julia> splitpath("/home/myuser/example.jl") -["/", "home", "myuser", "example.jl"] +4-element Array{String,1}: + "/" + "home" + "myuser" + "example.jl" ``` """ function splitpath(p::String)