diff --git a/NEWS.md b/NEWS.md index 366273a..0da0599 100644 --- a/NEWS.md +++ b/NEWS.md @@ -18,4 +18,4 @@ * Simplification and improvement of code performance across several functions (#154, #156, #162, @Bisaloo). * Make R version dependency explicit (#156, @Bisaloo). * Replace base R pipe with {tidyverse} pipe (#155, @Karim-Mane) -* Stop automatic conversion of numeric values into Date due to unexpected results from date_guess() function. +* Stop automatic conversion of numeric values into Date due to unexpected results from date_guess() function (#151, @Karim-Mane). diff --git a/R/clean_data_helpers.R b/R/clean_data_helpers.R index dca4061..3d1abec 100644 --- a/R/clean_data_helpers.R +++ b/R/clean_data_helpers.R @@ -117,7 +117,8 @@ scan_in_character <- function(x, x_name) { # Some numeric values might actually be of type Date. This is the case for # data imported into R from MS Excel. We use: # 1. lubridate parser on these values to convert them into Date using the - # date-time for 1900-01-01 UTC in POSIXct format as origin for modern MS Excel. + # date-time for 1900-01-01 UTC in POSIXct format as origin for modern + # MS Excel. # 2. the date guesser implemented for date standardisation. # Then detect the valid date values. A date is considered valid in this case # if it falls within the interval of today's date and 50 years back from