Skip to content

swapped-seek-arguments

Default severity: warning

The byte offset is the first argument and the whence constant is the second.

seeker.Seek(io.SeekStart, 0)
seeker.Seek(0, io.SeekStart)