Skip to content

Commit b75d065

Browse files
committed
Apply PR suggestions
1 parent e1ecf1d commit b75d065

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/scheduler/recurrence.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Recurrence
33
page_title: Scheduler Recurrence
4-
description: Overview of the Scheduler for Blazor.
4+
description: Learn how to set up the Telerik Scheduler for Blazor to display and edit recurring appointments.
55
slug: scheduler-recurrence
66
tags: telerik, blazor, scheduler, recurrence
77
published: True
@@ -149,7 +149,7 @@ A single Scheduler data item defines one series of recurring appointments. Set t
149149
};
150150
SchedulerData.Add(dailyLunch);
151151
152-
// Create exceptions to the base appointment
152+
// Create exceptions to the base appointment.
153153
int daysSinceMonday = SchedulerDate.DayOfWeek - DayOfWeek.Monday;
154154
DateTime lastMonday = DateTime.SpecifyKind(SchedulerDate.AddDays(-daysSinceMonday), DateTimeKind.Unspecified);
155155
@@ -172,7 +172,7 @@ A single Scheduler data item defines one series of recurring appointments. Set t
172172
};
173173
SchedulerData.Add(earlyLunchException);
174174
175-
// Relate the exceptions to the base appointment
175+
// Relate the exceptions to the base appointment.
176176
DateTime lateLunchOriginalStart = DateTime.SpecifyKind(lastMonday.AddHours(12), DateTimeKind.Unspecified);
177177
DateTime earlyLunchOriginalStart = DateTime.SpecifyKind(lastMonday.AddDays(3).AddHours(12), DateTimeKind.Unspecified);
178178
dailyLunch.RecurrenceExceptions = new List<DateTime>()
@@ -335,7 +335,7 @@ The following examples can serve as a reference for creating [custom Telerik Sch
335335
336336
private void OnFormUpdate()
337337
{
338-
// Only necessary to refresh the UI until all Rule parameters gain two-way binding
338+
// Only necessary to refresh the UI until all Rule parameters gain two-way binding.
339339
RecurringAppointment!.RecurrenceRule = Rule?.ToString() ?? string.Empty;
340340
}
341341

0 commit comments

Comments
 (0)