From 682b2bf291e0f47c3d35730c370fa951d3968995 Mon Sep 17 00:00:00 2001 From: Jim Menard Date: Tue, 3 Feb 2009 14:19:12 -0500 Subject: [PATCH] comment fix --- examples/types.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/types.rb b/examples/types.rb index 4c9998f..2d38994 100644 --- a/examples/types.rb +++ b/examples/types.rb @@ -18,7 +18,7 @@ coll.clear coll.insert('array' => [1, 2, 3], 'string' => 'hello', 'hash' => {'a' => 1, 'b' => 2}, - 'date' => Time.now, # seconds only; millisecs are not stored + 'date' => Time.now, # milliseconds only; microseconds are not stored 'oid' => ObjectID.new, 'binary' => Binary.new([1, 2, 3]), 'int' => 42,