Skip to content

Commit 1957024

Browse files
committed
doc: docs
1 parent 3dc8ed0 commit 1957024

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

NEWS.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.x.y will indicat
3232
## Breaking changes
3333

3434
- Switched `epi_df`'s `other_keys` default from `NULL` to `character(0)`; PR #390
35-
- Refactor `epi_archive` to use S3 instead of R6 for its object model. The calls to some functions will change, but the functionality will remain the same. It will also help us maintain the package better in the future. (#340)
35+
- Refactor `epi_archive` to use S3 instead of R6 for its object model. The
36+
functionality stay the same, but it will break the member function interface.
37+
For migration, convert `epi_archive$merge` to `epi_archive %>% epix_merge` and
38+
similar for `slide` and `fill_through_version` (#340).
3639

3740
# epiprocess 0.7.0
3841

R/grouped_epi_archive.R

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# At time of writing, roxygen parses content in collation order, impacting the
2+
# presentation of .Rd files that document multiple functions (see
3+
# https://github.com/r-lib/roxygen2/pull/324). We use @include tags (determining
4+
# `Collate:`) below to get the desired ordering.
5+
6+
17
#' Get var names from select-only `tidy_select`ing `...` in `.data`
28
#'
39
#' Convenience function for performing a `tidy_select` on dots according to its
@@ -420,13 +426,6 @@ epix_slide.grouped_epi_archive <- function(x, f, ..., before, ref_time_values,
420426
}
421427

422428

423-
# At time of writing, roxygen parses content in collation order, impacting the
424-
# presentation of .Rd files that document multiple functions (see
425-
# https://github.com/r-lib/roxygen2/pull/324). Use @include tags (determining
426-
# `Collate:`) and ordering of functions within each file in order to get the
427-
# desired ordering.
428-
429-
430429
#' @include methods-epi_archive.R
431430
#' @rdname group_by.epi_archive
432431
#'

0 commit comments

Comments
 (0)