Skip to content

Commit 9f2bb6b

Browse files
authored
Merge pull request #303 from fschaefer/master
Fix typo in func name
2 parents d2cc1d3 + ed20ae1 commit 9f2bb6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

processor/formatters.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ func fileSummarizeLong(input chan *FileJob) string {
819819

820820
if !Cocomo {
821821
if SLOCCountFormat {
822-
calcolateCocomoSLOCCount(sumCode, &str)
822+
calculateCocomoSLOCCount(sumCode, &str)
823823
} else {
824824
calculateCocomo(sumCode, &str)
825825
}
@@ -974,7 +974,7 @@ func fileSummarizeShort(input chan *FileJob) string {
974974

975975
if !Cocomo {
976976
if SLOCCountFormat {
977-
calcolateCocomoSLOCCount(sumCode, &str)
977+
calculateCocomoSLOCCount(sumCode, &str)
978978
} else {
979979
calculateCocomo(sumCode, &str)
980980
}
@@ -994,7 +994,7 @@ func trimNameShort(summary LanguageSummary, trimmedName string) string {
994994
return trimmedName
995995
}
996996

997-
func calcolateCocomoSLOCCount(sumCode int64, str *strings.Builder) {
997+
func calculateCocomoSLOCCount(sumCode int64, str *strings.Builder) {
998998
estimatedEffort := EstimateEffort(int64(sumCode), EAF)
999999
estimatedScheduleMonths := EstimateScheduleMonths(estimatedEffort)
10001000
estimatedPeopleRequired := estimatedEffort / estimatedScheduleMonths

0 commit comments

Comments
 (0)