From 8bc03f6a35069ad64f386998eebfac64708184f6 Mon Sep 17 00:00:00 2001 From: Mike Casebolt Date: Tue, 17 Aug 2021 20:06:30 -0700 Subject: [PATCH] Edit the "Create a Go File" section The word "built-in" is much more common than "inbuilt". Go has packages, and we don't need to refer to them as "packages/modules". Also, add a missing comma. --- .../latest/developer-resources/content-api/integrations/go.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developer-docs/latest/developer-resources/content-api/integrations/go.md b/docs/developer-docs/latest/developer-resources/content-api/integrations/go.md index cb56b8c11c..f66a7f14a3 100644 --- a/docs/developer-docs/latest/developer-resources/content-api/integrations/go.md +++ b/docs/developer-docs/latest/developer-resources/content-api/integrations/go.md @@ -18,8 +18,8 @@ Be sure to have [Go installed](https://golang.org/doc/install) on your computer. touch strapi.go ``` -Go has inbuilt module/package needed to make HTTP Requests like GET, POST PUT, DELETE. -We will use it("net/http") along with other modules/packages. +Go has built-in packages to make HTTP Requests like GET, POST, PUT, and DELETE. +We will use the "net/http" package along with other packages. ## GET Request your collection type