Fix typos (#195)

Most of them are caught by Go Report Card.
https://goreportcard.com/report/github.com/pelletier/go-toml
This commit is contained in:
Kazuyoshi Kato
2017-10-21 15:26:06 -07:00
committed by Thomas Pelletier
parent d01db88be9
commit 19ece5dc77
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
// JSONPath-like queries // JSONPath-like queries
// //
// The package github.com/pelletier/go-toml/query implements a system // The package github.com/pelletier/go-toml/query implements a system
// similar to JSONPath to quickly retrive elements of a TOML document using a // similar to JSONPath to quickly retrieve elements of a TOML document using a
// single expression. See the package documentation for more information. // single expression. See the package documentation for more information.
// //
package toml package toml
+1 -1
View File
@@ -105,7 +105,7 @@ The following struct annotations are supported:
commented:"true" Emits the value as commented. commented:"true" Emits the value as commented.
Note that pointers are automatically assigned the "omitempty" option, as TOML Note that pointers are automatically assigned the "omitempty" option, as TOML
explicity does not handle null values (saying instead the label should be explicitly does not handle null values (saying instead the label should be
dropped). dropped).
Tree structural types and corresponding marshal types: Tree structural types and corresponding marshal types:
+1 -1
View File
@@ -139,7 +139,7 @@
// Compiled Queries // Compiled Queries
// //
// Queries may be executed directly on a Tree object, or compiled ahead // Queries may be executed directly on a Tree object, or compiled ahead
// of time and executed discretely. The former is more convienent, but has the // of time and executed discretely. The former is more convenient, but has the
// penalty of having to recompile the query expression each time. // penalty of having to recompile the query expression each time.
// //
// // basic query // // basic query
+6 -6
View File
@@ -30,7 +30,7 @@ func (f *failingWriter) Write(p []byte) (n int, err error) {
f.buffer.Write(p[:toWrite]) f.buffer.Write(p[:toWrite])
f.written = f.failAt f.written = f.failAt
return toWrite, fmt.Errorf("failingWriter failed after writting %d bytes", f.written) return toWrite, fmt.Errorf("failingWriter failed after writing %d bytes", f.written)
} }
func assertErrorString(t *testing.T, expected string, err error) { func assertErrorString(t *testing.T, expected string, err error) {
@@ -176,7 +176,7 @@ func TestTreeWriteToFailingWriterInSimpleValue(t *testing.T) {
toml, _ := Load(`a = 2`) toml, _ := Load(`a = 2`)
writer := failingWriter{failAt: 0, written: 0} writer := failingWriter{failAt: 0, written: 0}
_, err := toml.WriteTo(&writer) _, err := toml.WriteTo(&writer)
assertErrorString(t, "failingWriter failed after writting 0 bytes", err) assertErrorString(t, "failingWriter failed after writing 0 bytes", err)
} }
func TestTreeWriteToFailingWriterInTable(t *testing.T) { func TestTreeWriteToFailingWriterInTable(t *testing.T) {
@@ -185,11 +185,11 @@ func TestTreeWriteToFailingWriterInTable(t *testing.T) {
a = 2`) a = 2`)
writer := failingWriter{failAt: 2, written: 0} writer := failingWriter{failAt: 2, written: 0}
_, err := toml.WriteTo(&writer) _, err := toml.WriteTo(&writer)
assertErrorString(t, "failingWriter failed after writting 2 bytes", err) assertErrorString(t, "failingWriter failed after writing 2 bytes", err)
writer = failingWriter{failAt: 13, written: 0} writer = failingWriter{failAt: 13, written: 0}
_, err = toml.WriteTo(&writer) _, err = toml.WriteTo(&writer)
assertErrorString(t, "failingWriter failed after writting 13 bytes", err) assertErrorString(t, "failingWriter failed after writing 13 bytes", err)
} }
func TestTreeWriteToFailingWriterInArray(t *testing.T) { func TestTreeWriteToFailingWriterInArray(t *testing.T) {
@@ -198,11 +198,11 @@ func TestTreeWriteToFailingWriterInArray(t *testing.T) {
a = 2`) a = 2`)
writer := failingWriter{failAt: 2, written: 0} writer := failingWriter{failAt: 2, written: 0}
_, err := toml.WriteTo(&writer) _, err := toml.WriteTo(&writer)
assertErrorString(t, "failingWriter failed after writting 2 bytes", err) assertErrorString(t, "failingWriter failed after writing 2 bytes", err)
writer = failingWriter{failAt: 15, written: 0} writer = failingWriter{failAt: 15, written: 0}
_, err = toml.WriteTo(&writer) _, err = toml.WriteTo(&writer)
assertErrorString(t, "failingWriter failed after writting 15 bytes", err) assertErrorString(t, "failingWriter failed after writing 15 bytes", err)
} }
func TestTreeWriteToMapExampleFile(t *testing.T) { func TestTreeWriteToMapExampleFile(t *testing.T) {