From 2655be0badb38ae155c89862b528b987644623ab Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:21:46 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- 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 f0f0e9ac7..2ac8a1ed1 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 database1(database)[My Database] +service database(db)[Database] ``` -creates the service identified as `database1`, using the icon `database`, with the label `My Database`. +creates the service identified as `database`, using the icon `db`, with the label `Database`. If the service belongs to a group, it can be placed inside it through the optional `in` keyword ``` -service database1(database)[My Database] in private_api +service database(db)[Database] in private_api ``` ### Edges