From 3d71a9ac1f16ad3376acffa50ef1f95088e73f93 Mon Sep 17 00:00:00 2001 From: Michael Horn Date: Sat, 17 Aug 2019 13:02:22 -0700 Subject: [PATCH] Fix code indentation on helloWorld README.md --- helloWorld/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/README.md b/helloWorld/README.md index cb5114c..8b30771 100644 --- a/helloWorld/README.md +++ b/helloWorld/README.md @@ -13,7 +13,7 @@ Let's look at the spec file first: const helloWorld = require('./helloWorld'); describe('Hello World', function() { - it('says hello world', function() { + it('says hello world', function() { expect(helloWorld()).toEqual('Hello, World!'); }); });