Skip to content

Commit

Permalink
fix: vignette options restored
Browse files Browse the repository at this point in the history
  • Loading branch information
bczernecki committed Oct 18, 2024
1 parent b19828e commit 6ec6fd3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vignettes/getstarted.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
options(scipen = 999)
old <- options(scipen = 999)
```

The goal of the **climate** R package is to automatize downloading of meteorological
Expand Down Expand Up @@ -237,3 +237,8 @@ library(climate)
citation("climate")
```
<!-- ![Mean maximum annual flow](../../docs/articles/articles/pl_files/figure-html/unnamed-chunk-1-1.png) -->


```{r setup_restore, include = FALSE}
options(old)
```

0 comments on commit 6ec6fd3

Please sign in to comment.