From 4ba038cfd9ae06f02d3a7943734616b11f932dba Mon Sep 17 00:00:00 2001 From: Alexandre Pasmantier Date: Mon, 16 Sep 2024 00:18:48 +0200 Subject: [PATCH] fix diagram --- src/app.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app.rs b/src/app.rs index 4602c9a..ad1034b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -16,14 +16,14 @@ /// └──────────────────────────┘ └─────────────────┘ /// │ /// ▼ -/// ┌───────────────────┐ ┌─────────────────┐ ┌─────────────────┐ -/// │ Recv on render_rx │ ◀────────────────────────────────────── │ Dispatch action │ ───────── │ dispatch action │ -/// └───────────────────┘ └─────────────────┘ └─────────────────┘ +/// ┌───────────────────┐ ┌─────────────────┐ +/// │ Recv on render_rx │ ◀────────────────────────────────────── │ Dispatch action │ +/// └───────────────────┘ └─────────────────┘ /// │ │ /// ▼ ▼ -/// ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ -/// │ Render component │ │ Update component │ │ update component │ -/// └──────────────────┘ └──────────────────┘ └──────────────────┘ +/// ┌──────────────────┐ ┌──────────────────┐ +/// │ Render component │ │ Update component │ +/// └──────────────────┘ └──────────────────┘ /// use std::sync::Arc;