From 2d84d265405f46b6efe75f659ee7d0e536461c9d Mon Sep 17 00:00:00 2001 From: Leon Rische Date: Thu, 3 Mar 2016 15:21:21 +0100 Subject: [PATCH] remove trailing whitespace --- 01_introduction_to_algorithms/ruby/01_binary_search.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_introduction_to_algorithms/ruby/01_binary_search.rb b/01_introduction_to_algorithms/ruby/01_binary_search.rb index 33762ad..7e873bb 100644 --- a/01_introduction_to_algorithms/ruby/01_binary_search.rb +++ b/01_introduction_to_algorithms/ruby/01_binary_search.rb @@ -14,7 +14,7 @@ def binary_search(list, item) low = mid + 1 end end - + return nil end