Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update spelling wordlist #1210

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Roxygen: list(markdown = TRUE, roclets = c( "rd", "namespace", "collate",
warning("Please install r-lib/pkgapi to make sure the file API is kept
up to date"); NULL}))
RoxygenNote: 7.3.1
Language: en-US
Config/testthat/edition: 3
Config/testthat/parallel: true
Collate:
Expand Down
168 changes: 32 additions & 136 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
@@ -1,245 +1,141 @@
AST
Addin
Addins
AppVeyor
CMD
DSLs
EOF
EOL
EOLs
EQ
Freepik
Gayathri
Github
Invasiveness
JamesIves
Jupyterlab
LF
Lifecycle
ORCID
README
RMarkdown
RStudio
Rmarkdown
Rmd
Rnw
Robinlovelace
Roxygen
Shallowify
StackOverflow
Tidyverse
Unindent
Visit'em
YAML
addin
addins
api
AppVeyor
arg
args
AST
aut
backport
backports
bdr
benchmarking
bootswatch
BugReports
bXj
cancelling
cff
ci
cli
CMD
codebase
codecov
codegrip
coercible
coercions
compat
config
Config
counterpair
coventions
cpp
cre
ctb
cyclocomp
cynkra
dec
dependabot
desc
devtools
dir
dirs
docsearch
dont
dontrun
dontshow
donttest
dplyr
DSLs
emacs
EOF
EOL
EOLs
EQ
examplesIf
expr
eZm
fansi
Fi
filetype
Fjmav
flaticon
forcond
formatter
Freepik
gadenbuie
Gayathri
getOption
ggplot
github
Github
gitsum
gmail
grkstyle
GSOC
helpfiles
href
https
icloud
ifelse
Indrajeet
infinitively
initializer
inode
integrations
interaces
internal's
invasiveness
Invasiveness
io
ixmypi
JamesIves
JBP
Jupyterlab
kirill
Kirill
knitr
krlmlr
labelled
learnr
LF
lifecycle
linter
linters
lintr
lorenz
lorenzwalthert
macOS
magrittr
mav
md
MERCHANTABILITY
mlr
mlr's
mutli
Müller
navbar
nbv
netlify
nocomments
NONINFRINGEMENT
nonportable
nzchar
ocx
oneliner
ORCID
ourself
packrat
pandoc
params
parsable
parsesum
Patil
patilindrajeet
patilindrajeets
pdy
PGW
pkgapi
pkgconfig
pkgdown
pos
pre
precommit
prefill
prettycode
priori
PRs
purrr
qez
qmd
Qmd
RcppExports
readme
README
rebased
reindent
reindented
reindention
relevel
renv
repo
reprex
revdepcheck
rlang
rlang's
rmarkdown
Rmarkdown
RMarkdown
rmd
Rmd
rnw
Rnw
roadmap
Robinlovelace
roclet
roclets
ropensci
roxgen
roxygen
Roxygen
RoxygenNote
rplumber
rprofile
Rprofile
rprojroot
RStudio
RStudio's
rstudioapi
saamwerk
Sd
semicoloner
Shallowify
sharding
spaceout
StackOverflow
styler
stylerignore
stylerignored
sublicense
summarises
testthat
tg
th
tibble
tibbles
tidyr
tidyverse
todo
travis
ubuntu
Uf
ui
uncached
unexplainable
unicode
unindent
Unindent
unindention
unlink
unnest
utf
vctrs
vec
Vh
VignetteBuilder
Visit'em
walthert
Walthert
winbuilder
withr
WN
www
xaringan
xfun
Xie
xk
XN
yaml
YAML
yihui
Yihui
yl
YPa
zm
zzz
2 changes: 1 addition & 1 deletion vignettes/customizing_styler.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ We note that there are different types of transformer functions. `initialize` in
tidyverse_style()$space$remove_space_after_opening_paren
```

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"):
IndrajeetPatil marked this conversation as resolved.
Show resolved Hide resolved
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:

```{r}
string_to_format <- "call( 3)"
Expand Down
Loading