Skip to content

Commit

Permalink
fix typos to close issue nationalparkservice#122
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLBaker committed Jan 17, 2025
1 parent 8d845f9 commit f1508d9
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit f1508d9

Please sign in to comment.