Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
missing "." before Execute() in chained commands: Options(options)Execute()
  • Loading branch information
omegagussan authored Jun 20, 2024
1 parent 8d3cee7 commit 687e9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ options := ClientGetStoreOptions{
// You can rely on the store id set in the configuration or override it for this specific request
StoreId: openfga.PtrString("01FQH7V8BEG3GPQW93KTRFR8JB"),
}
store, err := fgaClient.GetStore(context.Background()).Options(options)Execute()
store, err := fgaClient.GetStore(context.Background()).Options(options).Execute()
if err != nil {
// handle error
}
Expand Down

0 comments on commit 687e9b2

Please sign in to comment.