From 65502fb1de0695c7967b4f9b6a64f11e0975519d Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Mon, 9 Sep 2019 07:43:32 -0400 Subject: [PATCH 1/2] Update description.md I don't think it's great anyways but I'm tired of seeing students submit X as the variable name because of picking up some subliminal hint here. --- exercises/two-fer/description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/two-fer/description.md b/exercises/two-fer/description.md index 3a29112e1d..d690f34304 100644 --- a/exercises/two-fer/description.md +++ b/exercises/two-fer/description.md @@ -3,10 +3,10 @@ Given a name, return a string with the message: ```text -One for X, one for me. +One for [name], one for me. ``` -Where X is the given name. +Where "name" is the given name. However, if the name is missing, return the string: From e2d8360396e967bbc3bb36ca1589bf0d4cfc44ae Mon Sep 17 00:00:00 2001 From: Josh Goebel Date: Mon, 14 Oct 2019 11:29:26 -0400 Subject: [PATCH 2/2] Update exercises/two-fer/description.md Co-Authored-By: Victor Goff --- exercises/two-fer/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/two-fer/description.md b/exercises/two-fer/description.md index d690f34304..aef641bf55 100644 --- a/exercises/two-fer/description.md +++ b/exercises/two-fer/description.md @@ -3,7 +3,7 @@ Given a name, return a string with the message: ```text -One for [name], one for me. +One for name, one for me. ``` Where "name" is the given name.