From 12d57a2f64bca67e37182833df39c9c283da2afb Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 13 Jul 2022 17:49:06 +0100 Subject: [PATCH] Dav corrections --- subjects/nrune/README.md | 2 +- subjects/printstr/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/nrune/README.md b/subjects/nrune/README.md index 9945acf2..09c4cd4b 100644 --- a/subjects/nrune/README.md +++ b/subjects/nrune/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns the nth `rune` of a `string`. If it's not possible it doesn't return anything. +Write a function that returns the nth `rune` of a `string`. If not possible, it returns `0`. ### Expected function diff --git a/subjects/printstr/README.md b/subjects/printstr/README.md index a0311599..21dd8d2e 100644 --- a/subjects/printstr/README.md +++ b/subjects/printstr/README.md @@ -30,7 +30,7 @@ And its output : ```console $ go run . | cat -e -Hello World!$ +Hello World! $ ```