Fix example Indentation

This commit is contained in:
Samuel Lorch 2021-08-30 18:38:46 +02:00 committed by GitHub
parent 4da06d62b0
commit 547d0c4ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
})
```