From 883737a38020e0827abc20271a153804ae4ac906 Mon Sep 17 00:00:00 2001 From: Chao Cheng <413557584@qq.com> Date: Wed, 11 Oct 2023 03:06:41 +0800 Subject: [PATCH] Fix a typo in type-size.Rmd (#1852) --- vignettes/type-size.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/type-size.Rmd b/vignettes/type-size.Rmd index ff3ceee44..008ee7709 100644 --- a/vignettes/type-size.Rmd +++ b/vignettes/type-size.Rmd @@ -325,7 +325,7 @@ vec_size_common(integer(), 1) vctrs obeys a stricter set of recycling rules than base R. Vectors of size 1 are recycled to any other size. All other size combinations will generate an error. This strictness prevents common mistakes like `dest == c("IAH", "HOU"))`, at the cost of occasionally requiring an explicit calls to `rep()`. -```{r, echo = FALSE, fig.cap="Summary of vctrs recycling rules. X indicates n error"} +```{r, echo = FALSE, fig.cap="Summary of vctrs recycling rules. X indicates an error"} knitr::include_graphics("../man/figures/sizes-recycling.png", dpi = 300) ```