diff --git a/DESCRIPTION b/DESCRIPTION index 8ed5484..0d93946 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -24,7 +24,7 @@ License: MIT + file LICENSE Encoding: UTF-8 URL: https://hms.tidyverse.org/, https://github.com/tidyverse/hms BugReports: https://github.com/tidyverse/hms/issues -RoxygenNote: 7.3.2 +RoxygenNote: 7.3.2.9000 Roxygen: list(markdown = TRUE) Config/testthat/edition: 3 Config/autostyle/scope: line_breaks diff --git a/man/hms.Rd b/man/hms.Rd index 3c1a03a..3763a9d 100644 --- a/man/hms.Rd +++ b/man/hms.Rd @@ -53,14 +53,14 @@ as numeric vectors. \code{is_hms()} checks if an object is of class \code{hms}. \code{as_hms()} is a generic that supports conversions beyond casting. -The default method forwards to \code{\link[=vec_cast]{vec_cast()}}. +The default method forwards to \code{\link[vctrs:vec_cast]{vctrs::vec_cast()}}. } \details{ For \code{hms()}, all arguments must have the same length or be \code{NULL}. Odd combinations (e.g., passing only \code{seconds} and \code{hours} but not \code{minutes}) are rejected. -For arguments of type \link{POSIXct} and \link{POSIXlt}, \code{as_hms()} does not perform timezone +For arguments of type \link[lubridate:posix_utils]{lubridate::POSIXct} and \link{POSIXlt}, \code{as_hms()} does not perform timezone conversion. Use \code{\link[lubridate:with_tz]{lubridate::with_tz()}} and \code{\link[lubridate:force_tz]{lubridate::force_tz()}} as necessary. }