From 1ff486a85d151d0163011edfbc1f70fab312c4d2 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Sun, 20 Oct 2019 09:33:08 -0400 Subject: [PATCH] fix example `draw` command when I ran it locally (on the current https://github.com/underscoreio/creative-scala-template/archive/master.zip), I got an error: ``` scala> Example.image.draw :42: error: could not find implicit value for parameter renderer: doodle.effect.DefaultRenderer[[x[_]]doodle.language.Basic[x],Nothing,Nothing,Nothing] Example.image.draw ^ ``` changing to `draw()` seems to fix --- setup/mac.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/mac.md b/setup/mac.md index 28f4f24..5edb72e 100644 --- a/setup/mac.md +++ b/setup/mac.md @@ -52,7 +52,7 @@ $ ./sbt.sh . (you'll see some [info] logs here) . . -scala> Example.image.draw +scala> Example.image.draw() ``` An image of three circles should appear!