From 687e9b24bd4f2d3c9ef41aa8fa3ec508251fde11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20Sandstr=C3=B6m?= Date: Thu, 20 Jun 2024 16:44:26 +0200 Subject: [PATCH] Update README.md missing "." before Execute() in chained commands: Options(options)Execute() --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ed1dce..8dfcc24 100644 --- a/README.md +++ b/README.md @@ -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 }