From a1695967183a0e094b80e8348d9264878714660d Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 13 Jun 2023 15:06:37 +0200 Subject: [PATCH] Enhance documentation about expand header --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5bffd60..5752d37 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Many objects allow you to request additional information as an expanded response ```go ctx := context.Background() -order, res, err := client.Orders.Get(context.WithValue(ctx, "Expand", "order_lines")) +order, res, err := client.Orders.Get(context.WithValue(ctx, "Expand", "order_lines")) // Comma seperated value -> order_lines,shipping_method,etc ``` ## Support