From 3dd925866f8f75ed4d5393738f9c4f49eb38a29b Mon Sep 17 00:00:00 2001 From: eslopfer Date: Thu, 24 Nov 2022 19:19:02 +0000 Subject: [PATCH] docs(own-and-return): add commas --- subjects/own-and-return/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/own-and-return/README.md b/subjects/own-and-return/README.md index 398910e7..f97d6899 100644 --- a/subjects/own-and-return/README.md +++ b/subjects/own-and-return/README.md @@ -6,8 +6,8 @@ Create a struct `Film` that has one field `name` of type `String`. Create the following two functions: -- Create a function `take_film_name` it will return the name and consume the film (you should not be able to reuse it after you passed it to the function). -- Create a function `read_film_name` it will return the name without consuming the film (you can call the function multiple times with the same argument). +- Create a function `take_film_name`, it will return the name and consume the film (you should not be able to reuse it after you passed it to the function). +- Create a function `read_film_name`, it will return the name without consuming the film (you can call the function multiple times with the same argument). ### Expected functions