Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrynearson committed Nov 16, 2011
1 parent 5d8277a commit d4352c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Preview.server.bones
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ models.Preview.prototype.sync = function(method, model, success, error) {
if (err) return error(err);
source.getInfo(function(err, info) {
if (err) return error(err);
info.tiles = ['/tiles/' + model.id + '/{z}/{x}/{y}.png'];
info.tiles = ['/tile/' + model.id + '/{z}/{x}/{y}.png'];
success(_(info).extend({id: model.id }));
});
});
Expand Down

0 comments on commit d4352c0

Please sign in to comment.