Skip to content

Commit f8f7088

Browse files
NHDalyStefanKarpinski
authored andcommitted
Fix docstring output to fix broken doctest
1 parent 584d1b3 commit f8f7088

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

base/path.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,11 @@ the path, including the root directory if present.
213213
# Examples
214214
```jldoctest
215215
julia> splitpath("/home/myuser/example.jl")
216-
["/", "home", "myuser", "example.jl"]
216+
4-element Array{String,1}:
217+
"/"
218+
"home"
219+
"myuser"
220+
"example.jl"
217221
```
218222
"""
219223
function splitpath(p::String)

0 commit comments

Comments
 (0)