Skip to content

Commit

Permalink
Fix typo in func name
Browse files Browse the repository at this point in the history
  • Loading branch information
fschaefer committed Nov 10, 2021
1 parent d2cc1d3 commit ed20ae1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions processor/formatters.go
Expand Up @@ -819,7 +819,7 @@ func fileSummarizeLong(input chan *FileJob) string {

if !Cocomo {
if SLOCCountFormat {
calcolateCocomoSLOCCount(sumCode, &str)
calculateCocomoSLOCCount(sumCode, &str)
} else {
calculateCocomo(sumCode, &str)
}
Expand Down Expand Up @@ -974,7 +974,7 @@ func fileSummarizeShort(input chan *FileJob) string {

if !Cocomo {
if SLOCCountFormat {
calcolateCocomoSLOCCount(sumCode, &str)
calculateCocomoSLOCCount(sumCode, &str)
} else {
calculateCocomo(sumCode, &str)
}
Expand All @@ -994,7 +994,7 @@ func trimNameShort(summary LanguageSummary, trimmedName string) string {
return trimmedName
}

func calcolateCocomoSLOCCount(sumCode int64, str *strings.Builder) {
func calculateCocomoSLOCCount(sumCode int64, str *strings.Builder) {
estimatedEffort := EstimateEffort(int64(sumCode), EAF)
estimatedScheduleMonths := EstimateScheduleMonths(estimatedEffort)
estimatedPeopleRequired := estimatedEffort / estimatedScheduleMonths
Expand Down

0 comments on commit ed20ae1

Please sign in to comment.