From 12b7e03247cf4ef6aa80dc01f0d4f7405a6ceed8 Mon Sep 17 00:00:00 2001 From: Christian Musa Date: Fri, 14 Jul 2017 21:33:04 -0300 Subject: [PATCH] Add Go Report Card badge and fix spelling error --- README.md | 2 +- godotenv.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6fb495..21f79c4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# GoDotEnv [![Build Status](https://travis-ci.org/joho/godotenv.svg?branch=master)](https://travis-ci.org/joho/godotenv) [![Build status](https://ci.appveyor.com/api/projects/status/9v40vnfvvgde64u4?svg=true)](https://ci.appveyor.com/project/joho/godotenv) +# GoDotEnv [![Build Status](https://travis-ci.org/joho/godotenv.svg?branch=master)](https://travis-ci.org/joho/godotenv) [![Build status](https://ci.appveyor.com/api/projects/status/9v40vnfvvgde64u4?svg=true)](https://ci.appveyor.com/project/joho/godotenv) [![Go Report Card](https://goreportcard.com/badge/github.com/joho/godotenv)](https://goreportcard.com/report/github.com/joho/godotenv) A Go (golang) port of the Ruby dotenv project (which loads env vars from a .env file) diff --git a/godotenv.go b/godotenv.go index 0d9066c..81e5e67 100644 --- a/godotenv.go +++ b/godotenv.go @@ -10,7 +10,7 @@ // // godotenv.Load() // -// and all the env vars declared in .env will be avaiable through os.Getenv("SOME_ENV_VAR") +// and all the env vars declared in .env will be available through os.Getenv("SOME_ENV_VAR") package godotenv import (