Skip to content

docs(architecture): update icon name for database in exemple #5951

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/syntax/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading