Skip to content

Commit

Permalink
docs: Fix documentation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorGaiva committed Mar 3, 2024
1 parent 48331da commit aad0978
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lib/producer/producer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,25 @@ defmodule RabbitMQStream.Producer do
# Configuration
You can configure each Producer with:
You can configure each Producer with:
config :rabbitmq_stream, MyApp.MyProducer,
stream_name: "my-stream",
connection: MyApp.MyConnection
config :rabbitmq_stream, MyApp.MyProducer,
stream_name: "my-stream",
connection: MyApp.MyConnection
And also you can override the defaults of all producers with:
And also you can override the defaults of all producers with:
config :rabbitmq_stream, :defaults,
producer: [
connection: MyApp.MyConnection,
# ...
]
serializer: Jason
config :rabbitmq_stream, :defaults,
producer: [
connection: MyApp.MyConnection,
# ...
]
serializer: Jason
Globally configuring all producers ignores the following options:
Globally configuring all producers ignores the following options:
* `:stream_name`
* `:reference_name`
* `:stream_name`
* `:reference_name`
"""

Expand Down

0 comments on commit aad0978

Please sign in to comment.