Skip to content

Commit

Permalink
close #469: update manual
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Dec 5, 2021
1 parent 1a1b511 commit af277fe
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: stringi
Version: 1.7.6
Date: 2021-11-29
Version: 1.7.6.9001
Date: 2021-12-06
Title: Character String Processing Facilities
Description: A collection of character string/text/natural language
processing tools for pattern searching (e.g., with 'Java'-like regular
Expand Down
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# What Is New in *stringi*


## 1.7.6.9xxx (under development)

* ...


## 1.7.6 (2021-11-29)

* [BUILD TIME] #463: Added loongarch support in ICU's double conversion
Expand Down
8 changes: 6 additions & 2 deletions R/time_format.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
#' with the \code{\link[base]{strftime}} function)
#' formats a date/time object using the current default time zone.
#'
#' Unspecified fields are filled with the current date or time ones.
#'
#' \code{format} may be one of \code{DT_STYLE} or \code{DT_relative_STYLE},
#' where \code{DT} is equal to \code{date}, \code{time}, or \code{datetime},
#' and \code{STYLE} is equal to \code{full}, \code{long}, \code{medium},
Expand Down Expand Up @@ -215,8 +217,10 @@
#'
#'
#' @examples
#' stri_datetime_parse(c('2015-02-28', '2015-02-29'), 'yyyy-MM-dd')
#' stri_datetime_parse(c('2015-02-28', '2015-02-29'), 'yyyy-MM-dd', lenient=TRUE)
#' x <- c('2015-02-28', '2015-02-29')
#' stri_datetime_parse(x, 'yyyy-MM-dd')
#' stri_datetime_parse(x, 'yyyy-MM-dd', lenient=TRUE)
#' stri_datetime_parse(x %s+% " 00:00:00", "yyyy-MM-dd HH:mm:ss")
#' stri_datetime_parse('19 lipca 2015', 'date_long', locale='pl_PL')
#' stri_datetime_format(stri_datetime_now(), 'datetime_relative_medium')
#'
Expand Down
8 changes: 6 additions & 2 deletions man/stri_datetime_format.Rd

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

0 comments on commit af277fe

Please sign in to comment.