From b7042ebe93f2d0c2651adc4b3adb2b332051230d Mon Sep 17 00:00:00 2001 From: gwd <57595487+gwd666@users.noreply.github.com> Date: Sat, 6 Mar 2021 03:17:14 +0100 Subject: [PATCH] Fix small typo - missing parenthesis (#14) Noticed, during walking through the vignette that since `list_group_memberships` is a function call - the necessary parenthesis were missing. --- vignettes/intro.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/intro.Rmd b/vignettes/intro.Rmd index 8f4bffb..1c2eb66 100644 --- a/vignettes/intro.Rmd +++ b/vignettes/intro.Rmd @@ -39,7 +39,7 @@ me <- gr$get_user() me2 <- gr$get_user("hongooi@microsoft.com") # IDs of my groups -head(me$list_group_memberships) +head(me$list_group_memberships()) #> [1] "98326d14-365a-4257-b0f1-5c3ce3104f75" "b21e5600-8ac5-407b-8774-396168150210" #> [3] "be42ef66-5c13-48cb-be5c-21e563e333ed" "dd58be5a-1eac-47bd-ab78-08a452a08ea0" #> [5] "4c2bfcfe-5012-4136-ab33-f10389f2075c" "a45fbdbe-c365-4478-9366-f6f517027a22"