From e38bd5bcc398e76a79df05f14f045e28e2634f37 Mon Sep 17 00:00:00 2001 From: "g.bremont-ext" Date: Thu, 10 Oct 2024 16:05:36 +0200 Subject: [PATCH] docs(architecture): update icon name for database in exemple --- docs/syntax/architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/syntax/architecture.md b/docs/syntax/architecture.md index 2ac8a1ed1af..466c56cfba0 100644 --- a/docs/syntax/architecture.md +++ b/docs/syntax/architecture.md @@ -79,7 +79,7 @@ service {service id}({icon name})[{title}] (in {parent id})? Put together: ``` -service database(db)[Database] +service database(database)[Database] ``` creates the service identified as `database`, using the icon `db`, with the label `Database`. @@ -87,7 +87,7 @@ creates the service identified as `database`, using the icon `db`, with the labe If the service belongs to a group, it can be placed inside it through the optional `in` keyword ``` -service database(db)[Database] in private_api +service database(database)[Database] in private_api ``` ### Edges