Skip to content

Commit d07e4d3

Browse files
Merge pull request #1210 from r-lib/rm-nonexistent-vignette-refs
2 parents ad1cac1 + dd05981 commit d07e4d3

File tree

6 files changed

+20
-23
lines changed

6 files changed

+20
-23
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The source code is organized as follows:
9898
| token-create.R | Utilities for creating tokens, mostly to insert braces around mutli-line if statements. |
9999
| token-define.R | Defines which tokens belong to which group. |
100100
| transform-code.R, transform-files.R | Transformation of code for APIs that manipulate files (e.g. `style_file()`). |
101-
| ui.R | User interaces. Top-level functions for styling. |
101+
| ui.R | User interfaces. Top-level functions for styling. |
102102
| unindent.R | Certain tokens cause unindention, e.g. closing braces. |
103103
| utils.R | low-level general purpose utilities. |
104104
| vertical.R | S3 class for pretty printing of styled code. |

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Roxygen: list(markdown = TRUE, roclets = c( "rd", "namespace", "collate",
5353
warning("Please install r-lib/pkgapi to make sure the file API is kept
5454
up to date"); NULL}))
5555
RoxygenNote: 7.3.1
56+
Language: en-US
5657
Config/testthat/edition: 3
5758
Config/testthat/parallel: true
5859
Collate:

R/utils-cache.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ is_cached <- function(text,
5454
#' a new cache.
5555
#' * transformers. Cannot easily hash them because two environments won't be
5656
#' identical even if they contain the same objects (see 'Experiments'). Simple
57-
#' `as.character(transformers)` will not consider infinitively recursive
57+
#' `as.character(transformers)` will not consider infinitely recursive
5858
#' code dependencies.
5959
#' To fix this, transformers must have names and version number as described
6060
#' in [create_style_guide()]. Now, the only way to fool the cache invalidation

inst/WORDLIST

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Addin
22
addin
3+
Addins
34
addins
45
api
56
AppVeyor
67
arg
7-
args
88
AST
99
aut
1010
backport
@@ -20,13 +20,11 @@ ci
2020
cli
2121
CMD
2222
codebase
23-
codecov
2423
codegrip
2524
coercible
2625
coercions
2726
compat
2827
config
29-
Config
3028
counterpair
3129
coventions
3230
cpp
@@ -39,7 +37,6 @@ dependabot
3937
desc
4038
devtools
4139
dir
42-
dirs
4340
docsearch
4441
dont
4542
dontrun
@@ -67,8 +64,8 @@ gadenbuie
6764
Gayathri
6865
getOption
6966
ggplot
70-
github
7167
Github
68+
github
7269
gitsum
7370
gmail
7471
grkstyle
@@ -79,14 +76,12 @@ https
7976
icloud
8077
ifelse
8178
Indrajeet
82-
infinitively
8379
initializer
8480
inode
8581
integrations
86-
interaces
8782
internal's
88-
invasiveness
8983
Invasiveness
84+
invasiveness
9085
io
9186
ixmypi
9287
JamesIves
@@ -99,6 +94,7 @@ krlmlr
9994
labelled
10095
learnr
10196
LF
97+
Lifecycle
10298
lifecycle
10399
linter
104100
linters
@@ -148,10 +144,9 @@ PRs
148144
purrr
149145
qez
150146
qmd
151-
Qmd
152147
RcppExports
153-
readme
154148
README
149+
readme
155150
rebased
156151
reindent
157152
reindented
@@ -163,25 +158,24 @@ reprex
163158
revdepcheck
164159
rlang
165160
rlang's
166-
rmarkdown
167-
Rmarkdown
168161
RMarkdown
169-
rmd
162+
Rmarkdown
163+
rmarkdown
170164
Rmd
171-
rnw
165+
rmd
172166
Rnw
167+
rnw
173168
roadmap
174169
Robinlovelace
175170
roclet
176171
roclets
177172
ropensci
178173
roxgen
179-
roxygen
180174
Roxygen
175+
roxygen
181176
RoxygenNote
182177
rplumber
183178
rprofile
184-
Rprofile
185179
rprojroot
186180
RStudio
187181
RStudio's
@@ -196,6 +190,8 @@ StackOverflow
196190
styler
197191
stylerignore
198192
stylerignored
193+
stylers
194+
Stylers
199195
sublicense
200196
summarises
201197
testthat
@@ -204,6 +200,7 @@ th
204200
tibble
205201
tibbles
206202
tidyr
203+
Tidyverse
207204
tidyverse
208205
todo
209206
travis
@@ -213,8 +210,8 @@ ui
213210
uncached
214211
unexplainable
215212
unicode
216-
unindent
217213
Unindent
214+
unindent
218215
unindention
219216
unlink
220217
unnest
@@ -235,10 +232,9 @@ xfun
235232
Xie
236233
xk
237234
XN
238-
yaml
239235
YAML
236+
yaml
240237
yihui
241-
Yihui
242238
yl
243239
YPa
244240
zm

man/cache_make_key.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/customizing_styler.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ We note that there are different types of transformer functions. `initialize` in
4444
tidyverse_style()$space$remove_space_after_opening_paren
4545
```
4646

47-
As the name says, this function removes spaces after the opening parenthesis. But how? Its input is a *nest*. Since the visitor will go through all levels of nesting, we just need a function that can be applied to a *nest*, that is, to a parse table at one level of nesting. We can compute the nested parse table and look at one of the levels of nesting that is interesting for us (more on the data structure in the vignettes "Data structures" and "Manipulating the parse table"):
47+
As the name says, this function removes spaces after the opening parenthesis. But how? Its input is a *nest*. Since the visitor will go through all levels of nesting, we just need a function that can be applied to a *nest*, that is, to a parse table at one level of nesting. We can compute the nested parse table and look at one of the levels of nesting that is interesting for us:
4848

4949
```{r}
5050
string_to_format <- "call( 3)"

0 commit comments

Comments
 (0)