From b0e3471c2fb9519ee2aea78ae75244173e05abce Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 30 Jan 2023 16:20:32 +0000 Subject: [PATCH] docs(concat_string): add missing line for consistency --- subjects/devops/concat_string/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/subjects/devops/concat_string/README.md b/subjects/devops/concat_string/README.md index 80fe6fd8..8a96de82 100644 --- a/subjects/devops/concat_string/README.md +++ b/subjects/devops/concat_string/README.md @@ -5,6 +5,7 @@ Create a file `concat_string.py` that contains a function `concat` which takes in two strings as parameters and performs the following operations: - Concatenates the two strings by adding a comma and space between them. + - Returns the resulting string. ### Usage