We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5733f commit c17cd96Copy full SHA for c17cd96
vignettes/motivations.Rmd
@@ -225,7 +225,7 @@ One example of the use of altrep is the `:` operator.
225
Prior to R 3.5 `:` generated a full vector for the entire sequence. e.g. `1:1000` would require 1000 individual values.
226
As of R 3.5 this sequence is instead represented by an ALTREP vector, so *none* of the values actually exist in memory.
227
Instead each time R access a particular value in the sequence that value is computed on-the-fly.
228
-This safes memory and excution time, and allows users to use sequences which
+This saves memory and excution time, and allows users to use sequences which
229
would otherwise be too big to fit in memory.
230
231
```{r, R.options = list(max.print = 20)}
0 commit comments