Skip to content

Commit

Permalink
fix spelling typo in Article on using DRR (#124)
Browse files Browse the repository at this point in the history
* add project id

* Fix spelling typo

* auto update via pkgdown::build_site_github_pages

* fix typos to close issue #122
  • Loading branch information
RobLBaker authored Jan 21, 2025
1 parent f63462f commit 0ce98d2
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions QCkit.Rproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Version: 1.0
ProjectId: 6c0c6157-a131-4d4c-ac09-76dbba91e5cd

RestoreWorkspace: Default
SaveWorkspace: Default
Expand Down
2 changes: 1 addition & 1 deletion docs/articles/Using-the-DRR-Template.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pandoc: 3.1.11
pandoc: '3.2'
pkgdown: 2.1.0
pkgdown_sha: ~
articles:
articles/DRR_Purpose_and_Scope: DRR_Purpose_and_Scope.html
articles/Starting-a-DRR: Starting-a-DRR.html
articles/Using-the-DRR-Template: Using-the-DRR-Template.html
last_built: 2024-09-20T22:35Z
last_built: 2025-01-17T15:26Z
6 changes: 3 additions & 3 deletions inst/rmarkdown/templates/NPS_DRR/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if(length(seq_along(unique_authors$author_names)) == 1){
}
}
cat("#### ", curr$author_names, sep="")
if (is.na(curr$author_orcidD)) {
if (is.na(curr$author_orcid)) {
}
if (!is.na(curr$author_orcid)) {
orc <- paste0(" ", curr$author_orcid, "")
Expand Down Expand Up @@ -220,7 +220,7 @@ if(length(seq_along(unique_authors$author_names)) > 1){
cat("#### ", curr$author_names, " ", sep="")
if (is.na(curr$author_orcid)) {
}
if (!is.na(curr$author_orcidD)) {
if (!is.na(curr$author_orcid)) {
orc <- paste0(" ", curr$author_orcid, " ")
cat({{ orc }})
}
Expand Down Expand Up @@ -258,7 +258,7 @@ if(length(seq_along(unique_authors$author_names)) > 1){
}
# if IS the Last author :
if(i == length(seq_along(unique_authors$author_namess))){
if(i == length(seq_along(unique_authors$author_names))){
cat(curr$author_names, sep="")
if (is.na(curr$author_orcid)) {
}
Expand Down
2 changes: 1 addition & 1 deletion vignettes/articles/Using-the-DRR-Template.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ the YAML header.
acceptance criteria for each data quality flagged column in the same order
as the you specified the columns.

- `data_colunn_flagging`. Uses the input from `data_acceptance_criteria` to
- `data_column_flagging`. Uses the input from `data_acceptance_criteria` to
generate a table summarizing the data quality flagging in the data package.
If you set `data_acceptance_criteria` parameter `eval = FALSE`, also set
`data_column_flagging` parameter to `eval = FALSE`. Update the first line
Expand Down

0 comments on commit 0ce98d2

Please sign in to comment.