summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-07-02 20:58:08 -0400
committerEliot Horowitz <eliot@10gen.com>2010-07-02 20:58:08 -0400
commit08ec1654da0b80bb775bd838cef4ce5dbbca2d1a (patch)
treef25626f6310d8bc655621ed7d2acd230e75c8eb6
parent85a8c255b207bc9b390e12822d03a9a1db4d05ac (diff)
downloadmongo-08ec1654da0b80bb775bd838cef4ce5dbbca2d1a.tar.gz
typo
-rw-r--r--jstests/sharding/sync2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/sync2.js b/jstests/sharding/sync2.js
index f077be29ffc..ec590e0b225 100644
--- a/jstests/sharding/sync2.js
+++ b/jstests/sharding/sync2.js
@@ -69,9 +69,9 @@ for ( i=1; i<hashes.length; i++ ){
print( "collection " + k + " is differnet" );
print( "----" );
- s._connections[0].getDB( "config" ).getCollection( k ).find().sort( { _id : 1 } ).foreach( printjsononeline );
+ s._connections[0].getDB( "config" ).getCollection( k ).find().sort( { _id : 1 } ).forEach( printjsononeline );
print( "----" );
- s._connections[i].getDB( "config" ).getCollection( k ).find().sort( { _id : 1 } ).foreach( printjsononeline );
+ s._connections[i].getDB( "config" ).getCollection( k ).find().sort( { _id : 1 } ).forEach( printjsononeline );
print( "----" );
}