Skip to content

Commit

Permalink
intergers typo (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
naltmann authored Nov 26, 2024
1 parent 5749e71 commit a817f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/structured-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ To define your desired type specification (also known as a **schema**), you use
You can also have arrays of arrays and arrays of objects, which more closely resemble lists with well defined structures:

```{r}
list_of_intergers <- type_array(items = type_array(items = type_integer()))
list_of_integers <- type_array(items = type_array(items = type_integer()))
```

* **Objects** represent a collection of named values and are created with `type_object()`. Objects can contain any number of scalars, arrays, and other objects. They are similar to named lists in R.
Expand Down

0 comments on commit a817f42

Please sign in to comment.