From 7dc8013f62d9a10fd0489784dc2dad50b9851221 Mon Sep 17 00:00:00 2001 From: Bruce Eckel Date: Sun, 22 Sep 2024 15:51:31 -0600 Subject: [PATCH] Update scalatools.md --- docs/guide/scalatools.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/guide/scalatools.md b/docs/guide/scalatools.md index ca1d210b..c983a374 100644 --- a/docs/guide/scalatools.md +++ b/docs/guide/scalatools.md @@ -135,14 +135,6 @@ sbt:EffectOrientedProgramming> runMain Chapter03_Superpowers.App0 ``` > **NOTE: Some output might be out-of-order vs. output shown in the book**. -> Nodes in the same layer of the dependency graph have arbitrary ordering. -> The ordering of initialization in the dependency graph is only guaranteed in the sense that 'If B depends on A, then A will be constructed first.' -> But whenever there are unrelated pieces, the ordering is arbitrary. -> C could be constructed at any point: -> - Before A -> - In between A and B -> - After B -> As long as C doesn't depend on A or B.