From 29a17f0a72b8c87a91777bd773627da9f9357555 Mon Sep 17 00:00:00 2001 From: Dustin Covan Date: Wed, 13 Jul 2016 15:58:48 -0700 Subject: [PATCH] Update 03_simon_says_spec.rb I changed line 92's .to eq("The Bridge over the River Kwai") to ==> .to eq("The Bridge Over the River Kwai"), because it seems that 'over' should be capitalized as well, if I am understanding 'little words' to be words that are under three letters? --- spec/03_simon_says_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/03_simon_says_spec.rb b/spec/03_simon_says_spec.rb index ded4037..f393937 100644 --- a/spec/03_simon_says_spec.rb +++ b/spec/03_simon_says_spec.rb @@ -89,7 +89,7 @@ end it "does capitalize 'little words' at the start of a title" do - expect(titleize("the bridge over the river kwai")).to eq("The Bridge over the River Kwai") + expect(titleize("the bridge over the river kwai")).to eq("The Bridge Over the River Kwai") end end end