Modify withSavedContext documentation

This commit is contained in:
Brandon Tilley 2013-12-21 19:44:57 -08:00
parent 5b64dd81db
commit e428e6818a

View File

@ -105,7 +105,7 @@ planet.onDraw(function() {
planet.withSavedContext(function(context) {
context.beginPath();
planet.path.context(context)({type: 'Sphere'});
context.fillStyle = config.fill || 'black';
context.fillStyle = 'black';
context.fill();
});
});