diff --git a/docs/functions.md b/docs/functions.md index f489c61..dfbc8f0 100644 --- a/docs/functions.md +++ b/docs/functions.md @@ -235,7 +235,7 @@ split_into_first_and_last_name() **Good:** ```python -def split_into_first_and_last_name(name: str) -> None: +def split_into_first_and_last_name(name: str) -> list: return name.split() name = 'Ryan McDermott'