Skip to content

Commit

Permalink
chore(docs): fix typo in README.md (#111)
Browse files Browse the repository at this point in the history
Update README.md

missing "." before Execute() in chained commands: Options(options)Execute()
  • Loading branch information
omegagussan authored Jun 20, 2024
1 parent f0daa03 commit e445b77
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 e445b77

Please sign in to comment.