Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #341

Merged
merged 1 commit into from May 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/DayPickerAPI.md
Expand Up @@ -324,65 +324,65 @@ An array containing the short weekdays names to use in the month's header. Must

### onCaptionClick

**Type**: `(currentMonth: Date, e: SyntethicEvent) ⇒ void`
**Type**: `(currentMonth: Date, e: SyntheticEvent) ⇒ void`

Event handler when the user clicks on the caption in the header displaying the month.

---

### onDayClick

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the user clicks on a day cell.

---

### onBlur

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `blur` event.

### onDayKeyDown

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `keydown` event.

### onDayMouseEnter

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the mouse enters a day cell.

### onDayMouseLeave

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the mouse leave a day cell.

### onDayTouchStart

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `touchStart` event.

### onDayTouchEnd

**Type**: `(day: Date, modifiers: Object, e: SyntethicEvent) ⇒ void`
**Type**: `(day: Date, modifiers: Object, e: SyntheticEvent) ⇒ void`

Event handler when the day cell gets the `touchEnd` event.

### onFocus

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `focus` event

### onKeyDown

**Type**: `(e: SyntethicEvent) ⇒ void`
**Type**: `(e: SyntheticEvent) ⇒ void`

Event handler when the calendar get the `keydown` event

Expand All @@ -394,7 +394,7 @@ Event handler when the month is changed, i.e. clicking the navigation buttons or

### onWeekClick

**Type**: `(weekNumber: Number, days: Date[], e: SynteticEvent) ⇒ void`
**Type**: `(weekNumber: Number, days: Date[], e: SyntheticEvent) ⇒ void`

Event hander when the user clicks on a week number (when [showWeekNumbers](#showweeknumbers) is set to `true`).

Expand Down