Minor grammar fix in livedata_connection.js

While looking for a potential solution to [#132](/meteor/meteor/issues/139#issuecomment-10090472)
This commit is contained in:
Dan Dascalescu
2012-11-05 20:58:25 -08:00
parent e4d237f59a
commit e8f1510aed

View File

@@ -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;