diff --git a/docs/Config.md b/docs/Config.md index e6a4a4a754a..e791c257955 100644 --- a/docs/Config.md +++ b/docs/Config.md @@ -327,7 +327,7 @@ git: branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} -- # Command used to display git log of all branches in the main window. - # Deprecated: User `allBranchesLogCmds` instead. + # Deprecated: Use `allBranchesLogCmds` instead. allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium # If true, do not spawn a separate process when using GPG diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go index dd732e0bea6..1148bb94721 100644 --- a/pkg/config/user_config.go +++ b/pkg/config/user_config.go @@ -240,7 +240,7 @@ type GitConfig struct { // Command used when displaying the current branch git log in the main window BranchLogCmd string `yaml:"branchLogCmd"` // Command used to display git log of all branches in the main window. - // Deprecated: User `allBranchesLogCmds` instead. + // Deprecated: Use `allBranchesLogCmds` instead. AllBranchesLogCmd string `yaml:"allBranchesLogCmd"` // Commands used to display git log of all branches in the main window, they will be cycled in order of appearance AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"` diff --git a/schema/config.json b/schema/config.json index 1498b82ba89..ee5726740c1 100644 --- a/schema/config.json +++ b/schema/config.json @@ -605,7 +605,7 @@ }, "allBranchesLogCmd": { "type": "string", - "description": "Command used to display git log of all branches in the main window.\nDeprecated: User `allBranchesLogCmds` instead.", + "description": "Command used to display git log of all branches in the main window.\nDeprecated: Use `allBranchesLogCmds` instead.", "default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium" }, "allBranchesLogCmds": {