This commit is contained in:
Christoph Polcin
2018-05-16 12:35:57 +02:00
parent 5a1a85f622
commit 732590873e
3 changed files with 8 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ func Join(path0 string, path1 string) string {
// String pulls a string out of our io.Reader
func String(r io.Reader) string {
buf := new(bytes.Buffer)
// TODO - mkae String return an error as well
// TODO - make String return an error as well
_, _ = buf.ReadFrom(r)
return buf.String()
}