From 9947575806decfe06eb98a3cf109da82ddb7cfed Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Sun, 17 Nov 2019 12:49:43 +0300 Subject: [PATCH] update: wording switch exercise string manipulator --- 12-switch/exercises/04-string-manipulator/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/12-switch/exercises/04-string-manipulator/main.go b/12-switch/exercises/04-string-manipulator/main.go index db93434..725a320 100644 --- a/12-switch/exercises/04-string-manipulator/main.go +++ b/12-switch/exercises/04-string-manipulator/main.go @@ -10,8 +10,8 @@ package main // --------------------------------------------------------- // STORY -// You want to write a program that will manipulate the -// given strings to uppercase, lowercase, and title case. +// You want to write a program that will manipulate a +// given string to uppercase, lowercase, and title case. // // EXERCISE: String Manipulator //