From 077793575089f0771c6c18bc1ac810f82567963e Mon Sep 17 00:00:00 2001 From: Sebastian Czoch Date: Thu, 14 Dec 2017 23:27:03 +0100 Subject: [PATCH] Minor fixes --- README.md | 26 +++++++++++--------------- onesky.go | 2 +- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 4c8c70a..7ed9ee0 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,17 @@ Go utils for working with [OneSky](http://www.oneskyapp.com/) translation service. +## Install + +``` +$ go get github.com/SebastianCzoch/onesky-go +```` + +or via [Godep](https://github.com/tools/godep) +``` +$ godep get github.com/SebastianCzoch/onesky-go +``` + ## Examples ### Example 1 - Download file @@ -158,17 +169,6 @@ func main() { } ``` -## Install - -``` -$ go get github.com/SebastianCzoch/onesky-go -```` - -or via [Godep](https://github.com/tools/godep) -``` -$ godep get github.com/SebastianCzoch/onesky-go -``` - ## API @@ -212,7 +212,3 @@ $ go test ./... ## Support Issues for this project should be reported on GitHub issues - -Staff responsible for project: - -* [Sebastian Czoch ](sebastian@czoch.eu) diff --git a/onesky.go b/onesky.go index e4b7fc5..53cca15 100644 --- a/onesky.go +++ b/onesky.go @@ -446,7 +446,7 @@ func (c *Client) GetTranslationsStatus(fileName, locale string) (TranslationsSta return aux.Data, nil } -// GetLanguages is method on Client struct which download from OneSky service about available languages in project +// GetLanguages is method on Client struct which download from OneSky service information about available languages in project func (c *Client) GetLanguages() ([]Language, error) { endpoint, err := getEndpoint("getLanguages") if err != nil {