Skip to content

Commit 429f4cd

Browse files
committed
Rename mobber to typist
1 parent 04470ec commit 429f4cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

find_next.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ func findNextTypist(lastCommitters []string, gitUserName string) (nextTypist str
1010
nextTypistNeverDifferentFromGitUser = false
1111
// '2*i+1' defines how far we look ahead. It is the number of already processed elements.
1212
lookaheadThreshold := min(2*i+1, len(lastCommitters))
13-
previousMobber := lookahead(lastCommitters[:i], lastCommitters[i:lookaheadThreshold])
14-
if previousMobber != "" {
15-
nextTypist = previousMobber
13+
previousTypist := lookahead(lastCommitters[:i], lastCommitters[i:lookaheadThreshold])
14+
if previousTypist != "" {
15+
nextTypist = previousTypist
1616
}
1717
return
1818
}

0 commit comments

Comments
 (0)