From 547d0c4ca8e1d6e105fdc04bf36effd85bdfdfd0 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Mon, 30 Aug 2021 18:38:46 +0200 Subject: [PATCH] Fix example Indentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32f87b4..6802dd5 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Here We Specify that we want to Filter by Favorites and that the Response Should ```go favorites, err := client.GetResources(ctx, &api.GetResourcesOptions{ FilterIsFavorite: true, - ContainPermissions: true, + ContainPermissions: true, }) ``` @@ -132,7 +132,7 @@ Groups: ```go groups, err := client.GetGroups(ctx, &api.GetGroupsOptions{ - FilterHasUsers: []string{"id of user", "id of other user"}, + FilterHasUsers: []string{"id of user", "id of other user"}, ContainUser: true, }) ```