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:
@@ -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 {
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user