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

fix spelling typo in Article on using DRR #124

Merged
merged 4 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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 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
Loading