From 2459ecb941863e6a915088d58d1d6619b629a534 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 30 Jan 2023 16:19:29 +0000 Subject: [PATCH] docs(concat_string): rephrase usage and description --- subjects/devops/concat_string/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/subjects/devops/concat_string/README.md b/subjects/devops/concat_string/README.md index 12521b27b..80fe6fd8c 100644 --- a/subjects/devops/concat_string/README.md +++ b/subjects/devops/concat_string/README.md @@ -9,7 +9,7 @@ Create a file `concat_string.py` that contains a function `concat` which takes i ### Usage -Here is an example of how to use the `concat` function: +Here is an example of how to use the `concat` function in a `test.py` script: ```python import concat_string @@ -18,13 +18,15 @@ string2 = "World" print(concat_string.concat(string1, string2)) ``` -This will output: +Below is the expected output: + +```` ```console $ python3 test.py -Hello World +Hello, World $ -``` +```` ### References