diff --git a/input/docs/handbook/design-time/index.md b/input/docs/handbook/design-time/index.md index 46b3b3315..c694836d0 100644 --- a/input/docs/handbook/design-time/index.md +++ b/input/docs/handbook/design-time/index.md @@ -60,9 +60,9 @@ public class DesignTimeAboutViewModel : IAboutViewModel { AboutSections = new List { - new AboutSection {Title = "Title 1", Body = "Lorum Ipsum"}, - new AboutSection {Title = "Title 2", Body = "Lorum Ipsum"}, - new AboutSection {Title = "Title 3", Body = "Lorum Ipsum"} + new AboutSectionViewModel {Title = "Title 1", Body = "Lorum Ipsum"}, + new AboutSectionViewModel {Title = "Title 2", Body = "Lorum Ipsum"}, + new AboutSectionViewModel {Title = "Title 3", Body = "Lorum Ipsum"} }); RefreshCommand = ReactiveCommand.CreateFromTask(o => Task.FromResult(new AboutFeed())); }