Skip to content

Commit c742bad

Browse files
committed
Fix two comments
1 parent b9239da commit c742bad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/config/user_config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ type MergingConfig struct {
231231
}
232232

233233
type LogConfig struct {
234-
// One of: 'date-order' | 'author-date-order' | 'topo-order'
234+
// One of: 'date-order' | 'author-date-order' | 'topo-order | default'
235235
// 'topo-order' makes it easier to read the git log graph, but commits may not
236236
// appear chronologically. See https://git-scm.com/docs/
237237
Order string `yaml:"order" jsonschema:"enum=date-order,enum=author-date-order,enum=topo-order,enum=default"`
238238
// This determines whether the git graph is rendered in the commits panel
239-
// One of 'always' | 'never' 'when-maximised'
239+
// One of 'always' | 'never' | 'when-maximised'
240240
ShowGraph string `yaml:"showGraph" jsonschema:"enum=always,enum=never,enum=when-maximised"`
241241
// displays the whole git graph by default in the commits view (equivalent to passing the `--all` argument to `git log`)
242242
ShowWholeGraph bool `yaml:"showWholeGraph"`

0 commit comments

Comments
 (0)