From 8c3483d6e94a2d732190ab965bf6d13fefdcb862 Mon Sep 17 00:00:00 2001
From: petroselo <8535322+petroselo@users.noreply.github.com>
Date: Thu, 18 Jul 2024 17:49:45 +0100
Subject: [PATCH] Update editing form data page: wrap InputCheckbox example in
code block
---
.../input/pages/forms/editing-form-data/index.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/source/blazor-university-com/input/pages/forms/editing-form-data/index.md b/source/blazor-university-com/input/pages/forms/editing-form-data/index.md
index 6b8adcf..991dadd 100644
--- a/source/blazor-university-com/input/pages/forms/editing-form-data/index.md
+++ b/source/blazor-university-com/input/pages/forms/editing-form-data/index.md
@@ -52,7 +52,9 @@ Any that are not explicitly recognised by Blazor will be rendered directly onto
The `InputCheckbox` component binds a Boolean property to an HTML `` element with `type="checkbox"`.
This component does not allow binding to a nullable property.
+```razor
+```
## InputDate