From ced567b9cad23f5b4d8ab3a29a0c932f103494ce Mon Sep 17 00:00:00 2001 From: tcharding Date: Mon, 28 Aug 2017 10:05:50 +1000 Subject: [PATCH] Fix minor typos and gramar --- contributors/devel/go-code.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contributors/devel/go-code.md b/contributors/devel/go-code.md index 2af055f4d..dc597bb8a 100644 --- a/contributors/devel/go-code.md +++ b/contributors/devel/go-code.md @@ -1,7 +1,7 @@ # Kubernetes Go Tools and Tips -Kubernetes is one of the largest open source Go projects, so good tooling a solid understanding of -Go is critical to Kubernetes development. This document provides a collection of resources, tools +Kubernetes is one of the largest open source Go projects. Good tooling and a solid understanding of +Go is critical to Kubernetes development. This document provides a collection of resources, tools, and tips that our developers have found useful. ## Recommended Reading @@ -16,15 +16,15 @@ and tips that our developers have found useful. ## Recommended Tools -- [godep](https://github.com/tools/godep) - Used for Kubernetes dependency management. See also [Kubernetes godep and dependency management](development.md#godep-and-dependency-management) +- [godep](https://github.com/tools/godep) - Used for Kubernetes dependency management. See also [Kubernetes godep and dependency management](development.md#godep-and-dependency-management). - [Go Version Manager](https://github.com/moovweb/gvm) - A handy tool for managing Go versions. - [godepq](https://github.com/google/godepq) - A tool for analyzing go import trees. ## Go Tips -- [Godoc bookmarklet](https://gist.github.com/timstclair/c891fb8aeb24d663026371d91dcdb3fc) - navigate from a github page to the corresponding godoc page. +- [Godoc bookmarklet](https://gist.github.com/timstclair/c891fb8aeb24d663026371d91dcdb3fc) - Navigate from a github page to the corresponding godoc page. - Consider making a separate Go tree for each project, which can make overlapping dependency management much easier. Remember to set the `$GOPATH` correctly! Consider [scripting](https://gist.github.com/timstclair/17ca792a20e0d83b06dddef7d77b1ea0) this. -- Emacs users - setup [go-mode](https://github.com/dominikh/go-mode.el) +- Emacs users - setup [go-mode](https://github.com/dominikh/go-mode.el).