diff --git a/subjects/office_worker/README.md b/subjects/office_worker/README.md index 2768f001..a7a2f026 100644 --- a/subjects/office_worker/README.md +++ b/subjects/office_worker/README.md @@ -11,6 +11,8 @@ Create an enum `WorkerRole` which can be `Admin`, `User` or `Guest`. Implement for both the trait `From<&str>`. For `OfficeWorker` the string will have the format `"name,age,role"`, for `WorkerRole` the format of the string will be the `"role"` name in lower case. +> Invalid inputs won't be tested. + ### Expected Functions and Data Structures ```rust