From e428e6818a39aedf02ef0748d3486cc425f986f1 Mon Sep 17 00:00:00 2001 From: Brandon Tilley Date: Sat, 21 Dec 2013 19:44:57 -0800 Subject: [PATCH] Modify withSavedContext documentation --- site/public/documentation/planet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/public/documentation/planet.md b/site/public/documentation/planet.md index c966ab5..5bd7983 100644 --- a/site/public/documentation/planet.md +++ b/site/public/documentation/planet.md @@ -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(); }); });