From 99cebad69417ffa5683ce7bf4a099ed1aa44b266 Mon Sep 17 00:00:00 2001 From: Harsha Gudladona <7864088+gudladona87@users.noreply.github.com> Date: Sat, 13 Oct 2018 18:26:42 -0400 Subject: [PATCH] Fixed grammar. Fixed explanation of Run button (#18916) --- client/src/pages/guide/english/go/go-playground/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/guide/english/go/go-playground/index.md b/client/src/pages/guide/english/go/go-playground/index.md index f939047fb2..c87fb10bbf 100644 --- a/client/src/pages/guide/english/go/go-playground/index.md +++ b/client/src/pages/guide/english/go/go-playground/index.md @@ -13,9 +13,9 @@ Once there you'll get the buttons: 3. Imports 4. Share -The Run button just send the instruction of compile the code you wrote to the google servers that run the golang Backend. +The Run button sends the instruction to compile the code you wrote to the google servers that run the golang backend. -The Format button implements the idiomatic formatting style of the language, you can read more [here.](https://golang.org/pkg/fmt/) +The Format button implements the idiomatic formatting style of the language, you can read more [here](https://golang.org/pkg/fmt/) Imports just check what packages you have declared within import(). An import path is a string that uniquely identifies a package. A package's import path corresponds to its location inside a workspace or in a remote repository (explained below). [More](https://golang.org/doc/code.html#ImportPaths)