Skip to content

Commit

Permalink
Fix Typo + ReadMe
Browse files Browse the repository at this point in the history
  • Loading branch information
jdel committed Apr 10, 2018
1 parent 5418125 commit 19848e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

[![Build Status](https://travis-ci.org/jdel/go-syno.svg?branch=master)](https://travis-ci.org/jdel/go-syno)
[![GoDoc Reference](https://img.shields.io/badge/godoc-reference-5272B4.svg)](https://godoc.org/github.com/jdel/go-syno)
[![Maintainability](https://api.codeclimate.com/v1/badges/f1a48d398cf15113e78b/maintainability)](https://codeclimate.com/github/jdel/go-syno/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/f1a48d398cf15113e78b/test_coverage)](https://codeclimate.com/github/jdel/go-syno/test_coverage)
[![GoReport](https://goreportcard.com/badge/github.com/jdel/go-syno)](https://goreportcard.com/report/github.com/jdel/go-syno)
[![Maintainability](https://api.codeclimate.com/v1/badges/8ade3c7c3bb0c072a1f0/maintainability)](https://codeclimate.com/github/jdel/go-syno/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/8ade3c7c3bb0c072a1f0/test_coverage)](https://codeclimate.com/github/jdel/go-syno/test_coverage)

Under heavy work, please refrain from using it until the first release.

Expand Down
2 changes: 1 addition & 1 deletion models_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func TestModelsGetFromFileReadError(t *testing.T) {
t.Error(err)
}
if err := os.RemoveAll(o.ModelsFile); err != nil {
t.Skipf("Could not create file %s to prepare for test", o.ModelsFile)
t.Skipf("Could not delete file %s to prepare for test", o.ModelsFile)
}
if _, err := getModelsFromModelsFile(); err == nil {
t.Error("Expected a read error")
Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var LogPanicLevel = func() log.Level { return log.PanicLevel }()
// LogFatalLevel is a shorthand for logrus.FatalLevel
var LogFatalLevel = func() log.Level { return log.FatalLevel }()

// LogErrorLevel is a shorthand for logrus.PaniErrorLevelcLevel
// LogErrorLevel is a shorthand for logrus.ErrorLevel
var LogErrorLevel = func() log.Level { return log.ErrorLevel }()

// LogWarnLevel is a shorthand for logrus.WarnLevel
Expand Down

0 comments on commit 19848e8

Please sign in to comment.