From 559304af5b34091f1e0da7d927fd25b90eb8406f Mon Sep 17 00:00:00 2001 From: Mateus Date: Wed, 25 Sep 2024 12:36:53 -0300 Subject: [PATCH] mk/ small correction on Reader docstring --- src/reader.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reader.jl b/src/reader.jl index 80b49e9..d42b01f 100644 --- a/src/reader.jl +++ b/src/reader.jl @@ -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