From b65edac0a4edf43fdb9bd296df72fa4ac9703e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vi=C3=B1as=20Alcon?= Date: Thu, 23 Nov 2023 00:03:56 +0100 Subject: [PATCH] Improve comments --- bash/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/README.md b/bash/README.md index b6c8f3e..c484c55 100644 --- a/bash/README.md +++ b/bash/README.md @@ -95,13 +95,13 @@ setup() { ```shell @test "helloApp should print hello message" { # 4.1 Create a helloMessage function mock - # - Will return "Hello Test!" + # that will return "Hello Test!" function helloMessageMock() { echo "Hello Test!" } # 4.2 Create a helloConsole function mock - # - Will print parameter passed within "helloConsoleMock[...]" + # that will print parameter passed within "helloConsoleMock[...]" function helloConsoleMock() { local text=$1 echo "helloConsoleMock[$text]"