From c7bb226027b06b2a56c228687fcf53c8bb906253 Mon Sep 17 00:00:00 2001 From: r3verser Date: Mon, 6 Oct 2014 09:59:55 +0300 Subject: [PATCH] typo in input-forms.md --- docs/guide/input-forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/input-forms.md b/docs/guide/input-forms.md index 942e64193e..41b189c46f 100644 --- a/docs/guide/input-forms.md +++ b/docs/guide/input-forms.md @@ -168,7 +168,7 @@ class SettingsController extends Controller ``` In the code above we're using `indexBy` when retrieving models from database to make array indexed by model ids. These -will be later used to identify form fields. `loadMultiple` fills multiple modelds with the form data coming from POST +will be later used to identify form fields. `loadMultiple` fills multiple models with the form data coming from POST and `validateMultiple` validates all models at once. In order to skip validation when saving we're passing `false` as a parameter to `save`.