From a00981d9d89d878250487c5382f23e36f872fd2b Mon Sep 17 00:00:00 2001 From: Manuel Vilches Date: Sat, 13 Jul 2019 15:00:24 +0200 Subject: [PATCH] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4908b0a..8515000 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ const customerFormValidation = createFormValidation(customerFormValidationConstr ### Validating the entire form ```js -const viewModel = { login: 'jdoe@example.com', password: 'jdoe3981' }; +const viewModel = { firstName: 'John', lastName: 'Doe' }; customerFormValidation .validateForm(viewModel) .then((validationResult) => {