Skip to content

Commit

Permalink
fix #34
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Jan 12, 2023
1 parent da4f6e6 commit 6f2c3d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: srr
Title: 'rOpenSci' Review Roclets
Version: 0.0.1.186
Version: 0.0.1.187
Authors@R:
person("Mark", "Padgham", , "mark@ropensci.org", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265"))
Expand Down
4 changes: 3 additions & 1 deletion R/dl-standards.R
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,9 @@ add_space_around_sections <- function (s) {
# only
index1 <- which (snew == "")
index2 <- which (diff (index1) == 1)
snew <- snew [-(index1 [index2])]
if (length (index2) > 0) {
snew <- snew [-(index1 [index2])]
}

return (snew)
}
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "Companion package to 'rOpenSci' statistical software review\n project.",
"name": "srr: 'rOpenSci' Review Roclets",
"license": "https://spdx.org/licenses/MIT",
"version": "0.0.1.186",
"version": "0.0.1.187",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 6f2c3d5

Please sign in to comment.