Skip to content

Commit 1a931df

Browse files
committed
docs: Fix bad links and a typo
1 parent 5de6292 commit 1a931df

10 files changed

Lines changed: 18 additions & 18 deletions

R/spec-meta-bind-arrow-stream.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ spec_meta_arrow_stream_bind <- list(
517517
},
518518
arrow_stream_bind_date = function(ctx, con) {
519519
# <R/spec-meta-bind-expr.R:371>
520-
# - [Date]
520+
# - [Date][Dates]
521521
skip_if(!isTRUE(ctx$tweaks$date_typed))
522522
placeholder_funs <- get_placeholder_funs(ctx)
523523
is_null_check <- ctx$tweaks$is_null_check
@@ -581,7 +581,7 @@ spec_meta_arrow_stream_bind <- list(
581581
},
582582
arrow_stream_bind_timestamp = function(ctx, con) {
583583
# <R/spec-meta-bind-expr.R:391>
584-
# - [POSIXct] timestamps
584+
# - [POSIXct][DateTimeClasses] timestamps
585585
skip_if(!isTRUE(ctx$tweaks$timestamp_typed))
586586
placeholder_funs <- get_placeholder_funs(ctx)
587587
is_null_check <- ctx$tweaks$is_null_check

R/spec-meta-bind-arrow.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ spec_meta_arrow_bind <- list(
540540
},
541541
arrow_bind_date = function(ctx, con) {
542542
# <R/spec-meta-bind-expr.R:371>
543-
# - [Date]
543+
# - [Date][Dates]
544544
skip_if(!isTRUE(ctx$tweaks$date_typed))
545545
placeholder_funs <- get_placeholder_funs(ctx)
546546
is_null_check <- ctx$tweaks$is_null_check
@@ -598,7 +598,7 @@ spec_meta_arrow_bind <- list(
598598
},
599599
arrow_bind_timestamp = function(ctx, con) {
600600
# <R/spec-meta-bind-expr.R:391>
601-
# - [POSIXct] timestamps
601+
# - [POSIXct][DateTimeClasses] timestamps
602602
skip_if(!isTRUE(ctx$tweaks$timestamp_typed))
603603
placeholder_funs <- get_placeholder_funs(ctx)
604604
is_null_check <- ctx$tweaks$is_null_check

R/spec-meta-bind-expr.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ spec_meta_bind_expr <- function(
369369
},
370370

371371
bind_date = function() {
372-
#' - [Date]
372+
#' - [Date][Dates]
373373
test_select_bind_expr(
374374
arrow = arrow,
375375
bind = bind,
@@ -389,7 +389,7 @@ spec_meta_bind_expr <- function(
389389
},
390390

391391
bind_timestamp = function() {
392-
#' - [POSIXct] timestamps
392+
#' - [POSIXct][DateTimeClasses] timestamps
393393
data_in <- as.POSIXct(c(
394394
"2023-12-17 02:40:22",
395395
"2023-12-17 02:40:23",

R/spec-meta-bind-stream.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ spec_meta_stream_bind <- list(
659659
},
660660
stream_bind_date = function(ctx, con) {
661661
# <R/spec-meta-bind-expr.R:371>
662-
# - [Date]
662+
# - [Date][Dates]
663663
skip_if(!isTRUE(ctx$tweaks$date_typed))
664664
placeholder_funs <- get_placeholder_funs(ctx)
665665
is_null_check <- ctx$tweaks$is_null_check
@@ -723,7 +723,7 @@ spec_meta_stream_bind <- list(
723723
},
724724
stream_bind_timestamp = function(ctx, con) {
725725
# <R/spec-meta-bind-expr.R:391>
726-
# - [POSIXct] timestamps
726+
# - [POSIXct][DateTimeClasses] timestamps
727727
skip_if(!isTRUE(ctx$tweaks$timestamp_typed))
728728
placeholder_funs <- get_placeholder_funs(ctx)
729729
is_null_check <- ctx$tweaks$is_null_check

R/spec-meta-bind.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ spec_meta_bind <- list(
680680
},
681681
bind_date = function(ctx, con) {
682682
# <R/spec-meta-bind-expr.R:371>
683-
# - [Date]
683+
# - [Date][Dates]
684684
skip_if(!isTRUE(ctx$tweaks$date_typed))
685685
placeholder_funs <- get_placeholder_funs(ctx)
686686
is_null_check <- ctx$tweaks$is_null_check
@@ -738,7 +738,7 @@ spec_meta_bind <- list(
738738
},
739739
bind_timestamp = function(ctx, con) {
740740
# <R/spec-meta-bind-expr.R:391>
741-
# - [POSIXct] timestamps
741+
# - [POSIXct][DateTimeClasses] timestamps
742742
skip_if(!isTRUE(ctx$tweaks$timestamp_typed))
743743
placeholder_funs <- get_placeholder_funs(ctx)
744744
is_null_check <- ctx$tweaks$is_null_check

R/spec-result-roundtrip.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ spec_result_roundtrip <- list(
139139
data_date_typed = function(ctx, con) {
140140
#' If dates and timestamps are supported by the backend, the following R types are
141141
#' used:
142-
#' - [Date] for dates
142+
#' - [Date][Dates] for dates
143143
if (!isTRUE(ctx$tweaks$date_typed)) {
144144
skip("tweak: !date_typed")
145145
}
@@ -164,7 +164,7 @@ spec_result_roundtrip <- list(
164164
},
165165

166166
data_timestamp_typed = function(ctx, con) {
167-
#' - [POSIXct] for timestamps
167+
#' - [POSIXct][DateTimeClasses] for timestamps
168168
if (!isTRUE(ctx$tweaks$timestamp_typed)) {
169169
skip("tweak: !timestamp_typed")
170170
}

R/spec-transaction-with-transaction.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec_transaction_with_transaction <- list(
3030
},
3131

3232
with_transaction_error_nested = function(con) {
33-
#' of if [dbBegin()] has been called already)
33+
#' or if [dbBegin()] has been called already)
3434
dbBegin(con)
3535
#' gives an error.
3636
expect_error(dbWithTransaction(con, NULL))

man/spec_meta_bind.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/spec_result_roundtrip.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/spec_transaction_with_transaction.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)