From e9995f5f870ab359f1e6af17e27e2f308be4c08e Mon Sep 17 00:00:00 2001 From: MSilva95 <53977751+MSilva95@users.noreply.github.com> Date: Wed, 10 Aug 2022 10:55:55 +0100 Subject: [PATCH] remove changes i did in printstr --- subjects/printstr/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/printstr/README.md b/subjects/printstr/README.md index 10d91409..21dd8d2e 100644 --- a/subjects/printstr/README.md +++ b/subjects/printstr/README.md @@ -2,7 +2,7 @@ ### Instructions -- Write a function that prints one by one the characters of a `string` on the screen. The output must be followed by a new line at the end. +- Write a function that prints one by one the characters of a `string` on the screen. ### Expected function @@ -30,7 +30,7 @@ And its output : ```console $ go run . | cat -e -Hello World!$ +Hello World! $ ```