From a77604169be1bdcfc1e7c962dffc02d2cfc051de Mon Sep 17 00:00:00 2001 From: Sriram Balakrishnan Date: Thu, 1 Jun 2023 18:25:38 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ab46a0..66f8d91 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ If we export a `user`, the export will recurse into `purchase`, and then recurse This can be solved by telling Download not to recurse out of the `purchase` table, with `datapasta.DontRecurse("purchase")`. -This can also be solved by telling Download not to include the `user` table at all, with `datapasta.DontInclude("purchase")`. +This can also be solved by telling Download not to include the `purchase` table at all, with `datapasta.DontInclude("purchase")`. ### Import Tips @@ -85,4 +85,4 @@ for _, obj := range dump { obj["access_code"] = nil } } -``` \ No newline at end of file +```