Skip to content

Commit 13e9e1d

Browse files
authored
Fix typos (#4121)
- **PR Description** This PR fixes typos in the `allBranchesLogCmd` description
2 parents 0f26918 + 93a37cf commit 13e9e1d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/Config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ git:
327327
branchLogCmd: git log --graph --color=always --abbrev-commit --decorate --date=relative --pretty=medium {{branchName}} --
328328

329329
# Command used to display git log of all branches in the main window.
330-
# Deprecated: User `allBranchesLogCmds` instead.
330+
# Deprecated: Use `allBranchesLogCmds` instead.
331331
allBranchesLogCmd: git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium
332332

333333
# If true, do not spawn a separate process when using GPG

pkg/config/user_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ type GitConfig struct {
240240
// Command used when displaying the current branch git log in the main window
241241
BranchLogCmd string `yaml:"branchLogCmd"`
242242
// Command used to display git log of all branches in the main window.
243-
// Deprecated: User `allBranchesLogCmds` instead.
243+
// Deprecated: Use `allBranchesLogCmds` instead.
244244
AllBranchesLogCmd string `yaml:"allBranchesLogCmd"`
245245
// Commands used to display git log of all branches in the main window, they will be cycled in order of appearance
246246
AllBranchesLogCmds []string `yaml:"allBranchesLogCmds"`

schema/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@
605605
},
606606
"allBranchesLogCmd": {
607607
"type": "string",
608-
"description": "Command used to display git log of all branches in the main window.\nDeprecated: User `allBranchesLogCmds` instead.",
608+
"description": "Command used to display git log of all branches in the main window.\nDeprecated: Use `allBranchesLogCmds` instead.",
609609
"default": "git log --graph --all --color=always --abbrev-commit --decorate --date=relative --pretty=medium"
610610
},
611611
"allBranchesLogCmds": {

0 commit comments

Comments
 (0)