From 6f02276343732d4159a122c32486b4c8e4b7290c Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Thu, 18 Apr 2019 12:35:48 +0300 Subject: [PATCH] fix: the last example in text wrapper --- 21-project-text-wrapper/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/21-project-text-wrapper/README.md b/21-project-text-wrapper/README.md index c9cfc9b..00a41b4 100644 --- a/21-project-text-wrapper/README.md +++ b/21-project-text-wrapper/README.md @@ -19,13 +19,15 @@ Wrap the given text for 40 characters per line. For example, for the following i * The program should work with Unicode text. You can find a unicode text in [story.txt](story.txt) file. -* The program should not cut the words before they finish. Instead, it should put the whole word on the next line. For example, this is not OK: +* The program should not cut the words before they finish. Instead, it should put the whole word on the next line. +For example, this is not OK: + Hello world, how is it goi ng? It is o k. The weather is beautifu l. - + ## SOLUTION * [Get the solution source code here](main.go).