Skip to content

Commit 50f7ec6

Browse files
authored
Merge pull request #44 from sinansonmez/correct-typo
typos fixed
2 parents 07e42bb + 8ba612d commit 50f7ec6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/calendar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<button
2828
class="day"
2929
v-for="(mDay, index) in calendar.daysOfMonth"
30-
:key="`${index}-mounthday`"
30+
:key="`${index}-monthday`"
3131
@click="handlerDate(mDay.fullDate)"
3232
type="button"
3333
:class="[

src/utils/formatDate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @param {string} options.dateFormat.day // day format
1010
* @param {string} options.dateFormat.month // month format
1111
* @param {string} options.dateFormat.year // year format
12-
* @return {String} // formated value
12+
* @return {String} // formatted value
1313
*/
1414
export default function (date, options = {}) {
1515
const { value, range, lang, dateFormat } = options

0 commit comments

Comments
 (0)