Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ClickerMonkey committed Jun 1, 2018
1 parent d2dfa4f commit 1253687
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -16,12 +16,12 @@ let cal = Calendar.months<string>();
// Every Monday 9:00 - 9:30
cal.addSchedule({
event: 'Weekly Meeting',
schedule: new Schedule({
schedule: {
dayOfWeek: [Weekday.MONDAY],
times: [9],
duration: 30,
durationUnit: 'minutes'
})
}
});

// Dr. Appointment on 01/04/2018
Expand Down Expand Up @@ -75,12 +75,12 @@ var cal = ds.Calendar.months();
// Every Monday 9:00 - 9:30
cal.addSchedule({
event: 'Weekly Meeting',
schedule: new ds.Schedule({
schedule: {
dayOfWeek: [ds.Weekday.MONDAY],
times: [9],
duration: 30,
durationUnit: 'minutes'
})
}
});

// Dr. Appointment on 01/04/2018
Expand Down

0 comments on commit 1253687

Please sign in to comment.