Skip to content

Commit 82e301c

Browse files
committed
Add docstring compat annotations
1 parent a2db226 commit 82e301c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

base/io.jl

+6
Original file line numberDiff line numberDiff line change
@@ -1016,6 +1016,9 @@ Return an iterable object yielding [`read(io, T)`](@ref).
10161016
10171017
See also: [`skipuntil`](@ref), [`eachline`](@ref), [`readuntil`](@ref)
10181018
1019+
!!! compat "Julia 1.6"
1020+
`eachof` requires Julia 1.6 or later.
1021+
10191022
# Examples
10201023
```jldoctest
10211024
julia> open("my_file.txt", "w") do io
@@ -1117,6 +1120,9 @@ characters from that character until the start of the next line are ignored.
11171120
11181121
See also: [`readuntil`](@ref)
11191122
1123+
!!! compat "Julia 1.6"
1124+
`skipchars` was renamed to `skipuntil` in Julia 1.6.
1125+
11201126
# Examples
11211127
```jldoctest
11221128
julia> buf = IOBuffer(" text")

0 commit comments

Comments
 (0)