Skip to content

Commit e4f9675

Browse files
fix 'says hello world' in README.md
change 'says hello world' to 'says "Hello, World!" ' to be identical to the code in the (helloWorld.spec.js) file.
1 parent 2197f7b commit e4f9675

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

01_helloWorld/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's look at the spec file first:
1313
const helloWorld = require('./helloWorld');
1414

1515
describe('Hello World', function() {
16-
test('says hello world', function() {
16+
test('says "Hello, World!"', function() {
1717
expect(helloWorld()).toEqual('Hello, World!');
1818
});
1919
});

0 commit comments

Comments
 (0)