Skip to content

Commit

Permalink
Merge pull request #74 from adamlilith/solstice2022_2023
Browse files Browse the repository at this point in the history
Fix bad link in `mergeLists()`
  • Loading branch information
adamlilith committed Apr 7, 2024
2 parents 560f8d8 + cf29345 commit 23d228f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ o Changed arguments of `mergeLists()` to `...` so it can handle >2 lists at a ti
omnibus 1.2.11 (2024-04-03)
===========
o Added functions `compareFloat()` and aliases
o Added function `is.wholeNUmber()`
o Added function `is.wholeNumber()`
o Added function `forwardSlash()`
o Fixed bug in `convertUnits()` for converting between meters and kilometers

Expand Down
2 changes: 1 addition & 1 deletion R/mergeLists.r
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' Merge two lists with precedence
#'
#' This function merges two or more lists to create a single, combined list. If two elements in different lists have the same name, items in the later list gain preference (e.g., if there are three lists, then values in the third list gain precedence over items with the same name in the second, and the second has precedence over items in the first). Adapted from \href{http://stackoverflow.com/questions/13811501/r-merge-lists-with-overwrite-and-recursion}{Stack Overflow}.
#' This function merges two or more lists to create a single, combined list. If two elements in different lists have the same name, items in the later list gain preference (e.g., if there are three lists, then values in the third list gain precedence over items with the same name in the second, and the second has precedence over items in the first).
#'
#' @param ... Two or more lists.
#'
Expand Down
2 changes: 1 addition & 1 deletion man/mergeLists.Rd

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

0 comments on commit 23d228f

Please sign in to comment.