Skip to content

Commit

Permalink
Remove an unnecessary rm and add one to clean up files from doctests. (
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Aug 24, 2019
1 parent 24f1611 commit 93db56f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/DelimitedFiles/src/DelimitedFiles.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ julia> readdlm("delim_file.txt", ',')
3.0 3.3
4.0 4.4
julia> rm("delim_file.txt")
julia> z = ["a"; "b"; "c"; "d"];
julia> open("delim_file.txt", "w") do io
Expand Down Expand Up @@ -220,6 +218,8 @@ julia> readdlm("delim_file.txt", '\\t', Int, '\\n')
2 6
3 7
4 8
julia> rm("delim_file.txt")
```
"""
readdlm(input, dlm::AbstractChar, T::Type, eol::AbstractChar; opts...) =
Expand Down

0 comments on commit 93db56f

Please sign in to comment.