Browse Source

Arbitrary change to poke Travis

Mike Pastore 9 years ago
parent
commit
eb092b6d54
1 changed files with 2 additions and 2 deletions
  1. 2 2
      frameworks/Ruby/sinatra-sequel/hello_world.rb

+ 2 - 2
frameworks/Ruby/sinatra-sequel/hello_world.rb

@@ -79,7 +79,7 @@ class HelloWorld < Sinatra::Base
     queries = 1 if queries < 1
     queries = 500 if queries > 500
 
-    # Benchmark requirements explicitly forbid a WHERE..IN here, so be good...
+    # Benchmark requirements explicitly forbid a WHERE..IN here, so be good
     worlds = randn(queries).map! { |id| World[id] }
 
     World.to_json :array => worlds
@@ -102,7 +102,7 @@ class HelloWorld < Sinatra::Base
     queries = 500 if queries > 500
 
     # Benchmark requirements explicitly forbid a WHERE..IN here, and specify
-    # that each transaction only read and write a single record, so be good...
+    # that each transaction only read and write a single record, so be good
     worlds = []
     randn(queries).each do |id|
       World.db.transaction do