From e8f1510aed60ad5494d047888ee567aa2769dfee Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Mon, 5 Nov 2012 20:58:25 -0800 Subject: [PATCH] Minor grammar fix in livedata_connection.js While looking for a potential solution to [#132](/meteor/meteor/issues/139#issuecomment-10090472) --- packages/livedata/livedata_connection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/livedata/livedata_connection.js b/packages/livedata/livedata_connection.js index 56b5e48847..153295a6b6 100644 --- a/packages/livedata/livedata_connection.js +++ b/packages/livedata/livedata_connection.js @@ -389,7 +389,7 @@ _.extend(Meteor._LivedataConnection.prototype, { // Send the RPC. Note that on the client, it is important that the // stub have finished before we send the RPC (or at least we need - // to guaranteed that the snapshot is not restored until the stub + // to guarantee that the snapshot is not restored until the stub // has stopped doing writes.) var msg = { msg: 'method', @@ -418,7 +418,7 @@ _.extend(Meteor._LivedataConnection.prototype, { self.stream.send(JSON.stringify(msg)); } - // Even if we are waiting on other method calls mark this method + // Even if we are waiting on other method calls, mark this method // as unsatisfied so that the user never ends up seeing // intermediate versions of the server's datastream self.unsatisfied_methods[msg.id] = true;