aboutsummaryrefslogtreecommitdiffstats
path: root/entity/id_interleaved.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-17 22:05:29 +0100
committerGitHub <noreply@github.com>2023-01-17 22:05:29 +0100
commit0290091317deb9e6c0ff99f9217065168620d2f0 (patch)
treeef4b86e5b4ea357f43685f58a9d2f19bac5e8b3a /entity/id_interleaved.go
parente689cc506775ec1daccaae9ec35c7a28b48b2f05 (diff)
parentf23a7f07cc9d7e9b9407e0fcb99de6904f1b52a8 (diff)
downloadgit-bug-0290091317deb9e6c0ff99f9217065168620d2f0.tar.gz
Merge pull request #993 from MichaelMure/cmd-adapt
command: adapt the output of the bug list to the terminal size
Diffstat (limited to 'entity/id_interleaved.go')
-rw-r--r--entity/id_interleaved.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/entity/id_interleaved.go b/entity/id_interleaved.go
index 28c59a42..7ae6d72e 100644
--- a/entity/id_interleaved.go
+++ b/entity/id_interleaved.go
@@ -22,7 +22,7 @@ func (ci CombinedId) String() string {
// Human return the identifier, shortened for human consumption
func (ci CombinedId) Human() string {
- format := fmt.Sprintf("%%.%ds", humanIdLength)
+ format := fmt.Sprintf("%%.%ds", HumanIdLength)
return fmt.Sprintf(format, ci)
}