Fix a typo in "February"

This commit is contained in:
Sami Samhuri 2020-01-01 21:47:18 -08:00
parent b277106ed5
commit f71c9aabbb

View file

@ -11,7 +11,7 @@ struct Month: Equatable {
static let all = (1 ... 12).map(Month.init(_:))
static let names = [
"January", "Februrary", "March", "April",
"January", "February", "March", "April",
"May", "June", "July", "August",
"September", "October", "November", "December"
]