Back ported a lot of changes made to the Koans directory.
[ruby_koans.git] / koans / about_control_statements.rb
index 71a7af0..df503d7 100644 (file)
@@ -117,7 +117,7 @@ class AboutControlStatements < EdgeCase::Koan
     while i < 10
       i += 1
       next if (i % 2) == 0
-      result << i 
+      result << i
     end
     assert_equal __, result
   end