fix snapshot typos in SyncEngine

This commit is contained in:
Dan Mills 2008-07-30 22:52:49 -07:00
parent 0102f2cd60
commit 6b50b61a62

View File

@ -253,9 +253,9 @@ function SyncEngine() {}
SyncEngine.prototype = {
__proto__: new Engine(),
get snapshot() {
get _snapshot() {
let snap = new SnapshotStore(this.name);
this.__defineGetter__("_snapshot", function() snapshot);
this.__defineGetter__("_snapshot", function() snap);
return snap;
},