From 94d7af888c1d98f2708ad713bb7e6ccc40c0b3fd Mon Sep 17 00:00:00 2001 From: oddlittlebird <52059945+oddlittlebird@users.noreply.github.com> Date: Tue, 24 Sep 2019 22:28:44 -0700 Subject: [PATCH] Update UPGRADING_DEPENDENCIES.md (#19386) Minor grammar edits, mostly bringing headings in line with the style guide. --- UPGRADING_DEPENDENCIES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UPGRADING_DEPENDENCIES.md b/UPGRADING_DEPENDENCIES.md index 17321043426..79fd8cc4c8f 100644 --- a/UPGRADING_DEPENDENCIES.md +++ b/UPGRADING_DEPENDENCIES.md @@ -1,4 +1,4 @@ -# Guide to Upgrading Dependencies +# Guide to upgrading dependencies Upgrading Go or Node.js requires making changes in many different files. See below for a list and explanation for each. @@ -16,7 +16,7 @@ Upgrading Go or Node.js requires making changes in many different files. See bel - Appveyor - Dockerfile -## Go Dependencies +## Go dependencies The Grafana project uses [Go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) to manage dependencies on external packages. This requires a working Go environment with version 1.11 or greater installed. @@ -46,7 +46,7 @@ GO111MODULE=on go mod vendor You have to commit the changes to `go.mod`, `go.sum` and the `vendor/` directory before submitting the pull request. -## Node.js Dependencies +## Node.js dependencies Updated using `yarn`.