From 4f97c8c70ea8b69aaf66b4723449c2bcad7ea220 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/syntax/architecture.md b/docs/syntax/architecture.md index 2ac8a1ed1..f0f0e9ac7 100644 --- a/docs/syntax/architecture.md +++ b/docs/syntax/architecture.md @@ -79,15 +79,15 @@ service {service id}({icon name})[{title}] (in {parent id})? Put together: ``` -service database(db)[Database] +service database1(database)[My Database] ``` -creates the service identified as `database`, using the icon `db`, with the label `Database`. +creates the service identified as `database1`, using the icon `database`, with the label `My Database`. 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 database1(database)[My Database] in private_api ``` ### Edges