Skip to content

Commit 93db56f

Browse files
authored
Remove an unnecessary rm and add one to clean up files from doctests. (#33052)
1 parent 24f1611 commit 93db56f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/DelimitedFiles/src/DelimitedFiles.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ julia> readdlm("delim_file.txt", ',')
143143
3.0 3.3
144144
4.0 4.4
145145
146-
julia> rm("delim_file.txt")
147-
148146
julia> z = ["a"; "b"; "c"; "d"];
149147
150148
julia> open("delim_file.txt", "w") do io
@@ -220,6 +218,8 @@ julia> readdlm("delim_file.txt", '\\t', Int, '\\n')
220218
2 6
221219
3 7
222220
4 8
221+
222+
julia> rm("delim_file.txt")
223223
```
224224
"""
225225
readdlm(input, dlm::AbstractChar, T::Type, eol::AbstractChar; opts...) =

0 commit comments

Comments
 (0)