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! $ ```