Skip to content

Commit

Permalink
Merge pull request #17 from SebastianCzoch/feature/minor_fixes
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
SebastianCzoch authored Dec 14, 2017
2 parents e541cf1 + 0777935 commit 2bc5b22
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
26 changes: 11 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -212,7 +212,3 @@ $ go test ./...
## Support
Issues for this project should be reported on GitHub issues
Staff responsible for project:
* [Sebastian Czoch <[email protected]>]([email protected])
2 changes: 1 addition & 1 deletion onesky.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2bc5b22

Please sign in to comment.