From c98f4fa74da2c6bb19d07fd06da0362ecd132a71 Mon Sep 17 00:00:00 2001 From: Hendrik Kleinwaechter Date: Thu, 25 May 2023 13:47:10 +0200 Subject: [PATCH] Fix missing step in flow chart (#102) We were missing one step in the starter readiness check. This fixes #100. --- book/figures/fig-starter-readiness.tex | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/book/figures/fig-starter-readiness.tex b/book/figures/fig-starter-readiness.tex index eeced12..50389cf 100644 --- a/book/figures/fig-starter-readiness.tex +++ b/book/figures/fig-starter-readiness.tex @@ -5,8 +5,10 @@ \node [block] (init) {\footnotesize Make a starter}; \node [block, right of=init, node distance=3cm] (feed) {\footnotesize Feed your starter}; \path [line] (init) -- (feed); - \node [block, right of=feed, node distance=3cm] (ready_question) {\footnotesize Perform readiness check}; - \path [line] (feed) -- (ready_question); + \node [block, right of=feed, node distance=3cm] (wait_12_after_feed) {\footnotesize Wait 12 hours}; + \path [line] (feed) -- (wait_12_after_feed); + \node [block, right of=wait_12_after_feed, node distance=3cm] (ready_question) {\footnotesize Perform readiness check}; + \path [line] (wait_12_after_feed) -- (ready_question); \node [block, below of=feed, node distance=3cm] (wait_12) {\footnotesize Wait 12 hours}; \path [line] (wait_12) -- (feed); \node [decision, right of=ready_question, node distance=3.5cm] (is_bubbly) {\footnotesize Bubbly? Size Increase?};