From bddba126640a5103a47fad4f84eebdf4d572759d Mon Sep 17 00:00:00 2001 From: Paul Liverman Date: Sat, 25 Oct 2014 20:01:57 -0700 Subject: [PATCH] Typo fix README.md (comments in code example) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d2b1560..ee6c7b5 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,9 @@ local LightWorld = require "lib/light_world" -- create light world lightWorld = LightWorld({ - drawBackground = drawBackground, //the callback to use for drawing the background - drawForground = drawForground, //the callback to use for drawing the foreground - ambient = {55,55,55}, //the general ambient light in the environment + drawBackground = drawBackground, --the callback to use for drawing the background + drawForground = drawForground, --the callback to use for drawing the foreground + ambient = {55,55,55}, --the general ambient light in the environment }) function love.draw()