Skip to content

Commit 7c53acc

Browse files
Update to Tutorial2.md
Removed extra parenthesis on line 422.
1 parent 2d36ba1 commit 7c53acc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/tutorial/Tutorial2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ object RootWorkflow : StatefulWorkflow<Unit, State, Nothing, Any>() {
419419
// When the state is Todo, defer to the TodoListWorkflow.
420420
is Todo -> {
421421
val todoScreen
422-
= context.renderChild(TodoListWorkflow, Unit)) {
422+
= context.renderChild(TodoListWorkflow, Unit) {
423423
TODO() // we'll handle output of TodoListWorkflow later
424424
}
425425
return todoScreen

0 commit comments

Comments
 (0)