docs(dress_code): correct function signature

This commit is contained in:
eslopfer 2023-04-03 11:25:43 +01:00
parent a60397caa6
commit e598e9bd95
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ Remember that all the `enum` and `struct` used must be `pub`.
### Expected functions
```rust
pub fn choose_outfit(formality_level: Option<u32>, invitation_message: Result<&str>) -> Outfit {}
pub fn choose_outfit(formality_level: Option<u32>, invitation_message: Result<&str, &str>) -> Outfit {}
```
### Usage