From 06c0361852ba0ff157759bd57bd8de44ae1f345b Mon Sep 17 00:00:00 2001 From: Jonathan Keane Date: Mon, 22 Dec 2025 16:03:19 -0600 Subject: [PATCH 1/3] Correct a typo --- R/connect.R | 2 +- man/PositConnect.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/connect.R b/R/connect.R index 32f0688c..aa592179 100644 --- a/R/connect.R +++ b/R/connect.R @@ -5,7 +5,7 @@ #' @section Usage: #' \preformatted{ #' client <- Connect$new(server = 'connect.example.com', -#' apiKey = 'mysecretkey') +#' api_key = 'mysecretkey') #' client$get_apps() #' client$get_tags() #' } diff --git a/man/PositConnect.Rd b/man/PositConnect.Rd index 241b0c9a..d89f6367 100644 --- a/man/PositConnect.Rd +++ b/man/PositConnect.Rd @@ -13,7 +13,7 @@ Class representing a Connect API client \preformatted{ client <- Connect$new(server = 'connect.example.com', - apiKey = 'mysecretkey') + api_key = 'mysecretkey') client$get_apps() client$get_tags() } From ac0d883346b77d3dc4d689d81a9fbcd1349f7dcf Mon Sep 17 00:00:00 2001 From: Jonathan Keane Date: Tue, 23 Dec 2025 10:11:54 -0600 Subject: [PATCH 2/3] one more --- R/connect.R | 3 ++- man/PositConnect.Rd | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/R/connect.R b/R/connect.R index aa592179..161046e6 100644 --- a/R/connect.R +++ b/R/connect.R @@ -6,7 +6,8 @@ #' \preformatted{ #' client <- Connect$new(server = 'connect.example.com', #' api_key = 'mysecretkey') -#' client$get_apps() +#' +#' get_content(client) #' client$get_tags() #' } #' diff --git a/man/PositConnect.Rd b/man/PositConnect.Rd index d89f6367..dfc37d7d 100644 --- a/man/PositConnect.Rd +++ b/man/PositConnect.Rd @@ -14,7 +14,8 @@ Class representing a Connect API client \preformatted{ client <- Connect$new(server = 'connect.example.com', api_key = 'mysecretkey') -client$get_apps() + +get_content(client) client$get_tags() } } From f71e34349c3bafd6d2a96826ae4c75b59a25cadc Mon Sep 17 00:00:00 2001 From: Jonathan Keane Date: Tue, 23 Dec 2025 10:27:17 -0600 Subject: [PATCH 3/3] =?UTF-8?q?=E2=AC=9C=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- R/connect.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/connect.R b/R/connect.R index 161046e6..bbed41aa 100644 --- a/R/connect.R +++ b/R/connect.R @@ -6,7 +6,7 @@ #' \preformatted{ #' client <- Connect$new(server = 'connect.example.com', #' api_key = 'mysecretkey') -#' +#' #' get_content(client) #' client$get_tags() #' }