Skip to content

Commit c2c352f

Browse files
authored
Fix syntax error in v0.11 migration guide
The example provided in "Upgrade Steps" is missing a close paren
1 parent 94679b1 commit c2c352f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/upgrading_to_v0.11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ defmodule MyDevice.Scene.Example do
208208

209209
# display any received events
210210
def handle_event(event, _, %{assigns: %{graph: graph}} = scene) do
211-
graph = Graph.modify( graph, :text, &text(&1, inspect(event))
211+
graph = Graph.modify( graph, :text, &text(&1, inspect(event)))
212212

213213
scene =
214214
scene

0 commit comments

Comments
 (0)