fixed comment

This commit is contained in:
Branden Colen
2021-04-01 10:37:52 -05:00
parent 996383d45f
commit bc3ba62833
+2 -2
View File
@@ -45,8 +45,8 @@ func FromInt(input int) (string, error) {
return intToRoman(input), nil
}
// outOfBounds checks to ensure an input value is valid for roman numerals,
// vinculum is used for values of 4,000 and greater
// outOfBounds checks to ensure an input value is valid for roman numerals without the need of
// vinculum (used for values of 4,000 and greater)
func outOfBounds(input int) bool {
return input < _minRoman || input > _maxRoman
}