From 4f57bd94decc36d048928e99a370115358d3d959 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 14 May 2021 15:30:09 +0200 Subject: [PATCH] Apply further suggestion Co-authored-by: Daniel Hensby --- docs/en/02_Developer_Guides/00_Model/11_Scaffolding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/00_Model/11_Scaffolding.md b/docs/en/02_Developer_Guides/00_Model/11_Scaffolding.md index 7b29ddad4..5ce8f5f0f 100644 --- a/docs/en/02_Developer_Guides/00_Model/11_Scaffolding.md +++ b/docs/en/02_Developer_Guides/00_Model/11_Scaffolding.md @@ -7,7 +7,7 @@ icon: hammer # Scaffolding The ORM already has a lot of information about the data represented by a `DataObject` through its `$db` property, so -SilverStripe will use that information to provide scaffold for some interfaces. This is done though [FormScaffolder](api:SilverStripe\Forms\FormScaffolder) +SilverStripe will use that information to scaffold some interfaces. This is done though [FormScaffolder](api:SilverStripe\Forms\FormScaffolder) to provide reasonable defaults based on the property type (e.g. a checkbox field for booleans). You can then further customise those fields as required.