Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit e78545e

Browse files
authored
docs(messaging): fix heading levels (#717)
1 parent c92404d commit e78545e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/messaging.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Nitric provides two common options for scalable, decoupled, asynchronous messagi
88

99
In some circumstances messages sent to a _Topic_ may also be called _Events_, while messages sent to a _Queue_ may be called _Tasks_. The structures of these messages are very similar, but the delivery and retry mechanisms are different. It can be helpful to refer to these messages differently to assist in understanding the context in which they are used.
1010

11-
### Topics
11+
## Topics
1212

1313
A topic is a named resource where events can be published. They can be thought of as a subject that your services are communicating about.
1414

@@ -360,7 +360,7 @@ updates.subscribe((ctx) async {
360360

361361
You can read more about idempotent subscribers and patterns to handle it [here](https://microservices.io/post/microservices/patterns/2020/10/16/idempotent-consumer.html).
362362

363-
### Queues
363+
## Queues
364364

365365
Queues are another option for asynchronous messaging. Unlike [topics](#topics), messages sent to a queue won't automatically trigger services to process them. Instead, services dequeue message by requesting them.
366366

0 commit comments

Comments
 (0)