Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix doc and tweak formatting #1543

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions R/remote.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
#' the query plan (as computed by the remote database). `remote_src()` and
#' `remote_con()` give the dplyr source and DBI connection respectively.
#'
#' @param x Remote table, currently must be a [tbl_sql].
#' @param x Remote table, currently must be a [`tbl_sql`].
#' @param null_if_local Return `NULL` if the remote table is created via
#' `tbl_lazy()` or `lazy_frame()`?
#' [tbl_lazy()] or [lazy_frame()]?
#' @param cte `r lifecycle::badge("deprecated")`
#' Use the `render_otions` argument instead.
#' Use the `sql_options` argument instead.
#' @param sql_options `r lifecycle::badge("experimental")`
#' SQL rendering options generated by `sql_options()`.
#' SQL rendering options generated by [sql_options()].
#' @param ... Additional arguments passed on to methods.
#' @return The value, or `NULL` if not remote table, or not applicable.
#' For example, computed queries do not have a "name"
#' @return A string, or `NULL` if not a remote table, or not applicable.
#' For example, computed queries do not have a "name".
#' @export
#' @examples
#' mf <- memdb_frame(x = 1:5, y = 5:1, .name = "blorp")
Expand Down
Loading