File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ dayname(day::Integer; locale::AbstractString="english") = dayname(day, LOCALES[l
129
129
dayabbr (day:: Integer ; locale:: AbstractString = " english" ) = dayabbr (day, LOCALES[locale])
130
130
131
131
"""
132
- dayname(dt::TimeType; locale="english") -> AbstractString
132
+ dayname(dt::TimeType; locale="english") -> String
133
133
134
134
Return the full day name corresponding to the day of the week of the `Date` or `DateTime` in
135
135
the given `locale`.
@@ -145,7 +145,7 @@ function dayname(dt::TimeType;locale::AbstractString="english")
145
145
end
146
146
147
147
"""
148
- dayabbr(dt::TimeType; locale="english") -> AbstractString
148
+ dayabbr(dt::TimeType; locale="english") -> String
149
149
150
150
Return the abbreviated name corresponding to the day of the week of the `Date` or `DateTime`
151
151
in the given `locale`.
@@ -236,7 +236,7 @@ monthname(month::Integer; locale::AbstractString="english") = monthname(month, L
236
236
monthabbr (month:: Integer ; locale:: AbstractString = " english" ) = monthabbr (month, LOCALES[locale])
237
237
238
238
"""
239
- monthname(dt::TimeType; locale="english") -> AbstractString
239
+ monthname(dt::TimeType; locale="english") -> String
240
240
241
241
Return the full name of the month of the `Date` or `DateTime` in the given `locale`.
242
242
@@ -251,7 +251,7 @@ function monthname(dt::TimeType; locale::AbstractString="english")
251
251
end
252
252
253
253
"""
254
- monthabbr(dt::TimeType; locale="english") -> AbstractString
254
+ monthabbr(dt::TimeType; locale="english") -> String
255
255
256
256
Return the abbreviated month name of the `Date` or `DateTime` in the given `locale`.
257
257
You can’t perform that action at this time.
0 commit comments