Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
musm authored Apr 22, 2021
1 parent 1577f3c commit 223836f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion base/path.jl
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,13 @@ letter casing, hence `joinpath("C:\\A","c:b") = "C:\\A\\b"`.
julia> joinpath("/home/myuser", "example.jl")
"/home/myuser/example.jl"
```
```jldoctest
julia> joinpath(["/home/myuser", "example.jl"])
"/home/myuser/example.jl"
```
"""
joinpath(paths::AbstractString...)::String = joinpath(paths)
joinpath

"""
normpath(path::AbstractString) -> String
Expand Down

0 comments on commit 223836f

Please sign in to comment.