From 0a3572d1114b5f5cad5b944a3a04a5d3e944fce4 Mon Sep 17 00:00:00 2001 From: Michele Sessa Date: Thu, 20 Oct 2022 10:42:46 +0100 Subject: [PATCH] docs(error_types): fix typo --- subjects/error_types/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subjects/error_types/README.md b/subjects/error_types/README.md index cb97e0b3..f04c2b94 100644 --- a/subjects/error_types/README.md +++ b/subjects/error_types/README.md @@ -6,14 +6,13 @@ For this exercise, you will have to implement an **error type** for a form valid The first name must not be empty and the password must have **at least 8 characters**, and a combination of **alphabetic**, **numeric** and **none-alphanumeric** (`<`, `&`, `/` ...). -examples +Examples: - `"asDd123=%"`: **good**. - `"asgfD"`: **error** as it only contains alphabetic characters. - `"asdsdf2"`: **error** as it is missing none-alphanumeric characters. - `"sad\_#$"`: **error** as it is missing numeric characters. Create a structure named `Form` that will have the following fields: - - `first_name`: `String` - `last_name`: `String` - `birth`: `NaiveDate` that will convert a string `"2015-09-05"` to a date of that format.