Skip to content

Commit

Permalink
mk/ small correction on Reader docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
MateusKaiss committed Sep 25, 2024
1 parent 26ca236 commit 559304a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ end
This function moves the reader to the specified dimensions and returns the corresponding data. It updates the internal cache and retrieves the necessary time series values.
For **binary files**, `goto!` allows random access to any part of the time series, meaning you can jump between stages, scenarios, and blocks in any order. This provides greater flexibility for accessing specific points in the data.
- For **binary files**, `goto!` allows random access to any part of the time series, meaning you can jump between stages, scenarios, and blocks in any order. This provides greater flexibility for accessing specific points in the data.
For **CSV files**, `goto!` works differently. It only supports forward sequential access, meaning that while you can still navigate through stages, scenarios, and blocks, you cannot randomly jump to previous positions. The function moves forward through the file, reading data sequentially.
- For **CSV files**, `goto!` works differently. It only supports forward sequential access, meaning that while you can still navigate through stages, scenarios, and blocks, you cannot randomly jump to previous positions. The function moves forward through the file, reading data sequentially.
# Parameters
Expand Down

0 comments on commit 559304a

Please sign in to comment.