Skip to content

Commit a812158

Browse files
committed
Remove exclamation point and fix description of test
Fixes learn-co-students#12 Fixes learn-co-students#13
1 parent e8edecb commit a812158

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ What is that thing? The test expected the empty string, `''`, to be equal to the
130130

131131
But reading on, we only see `+Hello, everybody!` — what's going on? Why isn't there any `- actual` output? Well, there _was_ no actual output — it's just an empty string! That must be the problem!
132132

133-
Next, the title tells us that `strings.js` "defines `myString`." Let's look in `strings.js` — sure enough, we see, at the top of the file, `myString = "";`. Seems like a reasonable place to start.
133+
Next, the title tells us that `strings.js` "defines `greeting`." Let's look in `strings.js` — sure enough, we see, at the top of the file, `var greeting = "";`. Seems like a reasonable place to start.
134134

135135
What if, instead of assigning `""` to `greeting`, we assign `"Hello, everybody!"`, like the test expects. Go ahead and change that line in `strings.js` so it reads
136136

strings.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var greeting = "!";
1+
var greeting = "";
22

33
var specialGuest = "Neil deGrasse Tyson"
44

0 commit comments

Comments
 (0)