1
0
mirror of https://github.com/TomWright/dasel.git synced 2022-05-22 02:32:45 +03:00

Fix parser descriptions

This commit is contained in:
beatcracker
2021-12-08 03:08:47 +03:00
parent d2622a2d3d
commit 7e10ac11f7
4 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ func init() {
registerWriteParser([]string{"csv"}, []string{".csv"}, &CSVParser{})
}
// CSVParser is a Parser implementation to handle yaml files.
// CSVParser is a Parser implementation to handle csv files.
type CSVParser struct {
}

View File

@@ -12,7 +12,7 @@ func init() {
registerWriteParser([]string{"json"}, []string{".json"}, &JSONParser{})
}
// JSONParser is a Parser implementation to handle yaml files.
// JSONParser is a Parser implementation to handle json files.
type JSONParser struct {
}

View File

@@ -9,7 +9,7 @@ func init() {
registerWriteParser([]string{"-", "plain"}, []string{}, &PlainParser{})
}
// PlainParser is a Parser implementation to handle yaml files.
// PlainParser is a Parser implementation to handle plain files.
type PlainParser struct {
}

View File

@@ -20,7 +20,7 @@ func init() {
registerWriteParser([]string{"xml"}, []string{".xml"}, &XMLParser{})
}
// XMLParser is a Parser implementation to handle yaml files.
// XMLParser is a Parser implementation to handle xml files.
type XMLParser struct {
}