Skip to content

Commit 32726ec

Browse files
author
Laurent Meyer
committed
Changed tiny things
1 parent f8a541a commit 32726ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/main/java/com/alamkanak/weekview/WeekView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1468,10 +1468,10 @@ public interface EventClickListener {
14681468
public interface MonthChangeListener {
14691469
/**
14701470
* Very important interface, it's the base to load events in the calendar.
1471-
* This method is called three times: once to load the previous month, once to load the next month and once to load the current month.
1471+
* This method is called three times: once to load the previous month, once to load the next month and once to load the current month.<br/>
14721472
* <strong>That's why you can have three times the same event at the same place if you mess up with the configuration</strong>
14731473
* @param newYear: year of the events required by the view.
1474-
* @param newMonth: month of the events required by the view <strong>1 based (not like JAVA API) --> January = 1 and December = 12</strong>.
1474+
* @param newMonth: month of the events required by the view <br/><strong>1 based (not like JAVA API) --> January = 1 and December = 12</strong>.
14751475
* @return a list of the events happening <strong>during the specified month</strong>.
14761476
*/
14771477
public List<WeekViewEvent> onMonthChange(int newYear, int newMonth);

0 commit comments

Comments
 (0)