From 61b20b5705af42db3d7d9ca40f63f19cdd509d82 Mon Sep 17 00:00:00 2001 From: Alexander Barth Date: Wed, 10 Jan 2024 12:17:28 +0100 Subject: [PATCH] fix typo --- src/cfvariable.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfvariable.jl b/src/cfvariable.jl index 554f414..886d62d 100644 --- a/src/cfvariable.jl +++ b/src/cfvariable.jl @@ -74,7 +74,7 @@ ds = NCDataset("foo.nc"); # 0 is declared as the fill value (add_offset and scale_factor are applied as usual) @show cfvariable(ds,"data", fillvalue = 0)[:] -# return [missing, 11., 12., 13.] +# returns [missing, 11., 12., 13.] # Use the time units: days since 2000-01-01 @show cfvariable(ds,"data", units = "days since 2000-01-01")[:]