From aad09780cf62a57213aa0c27253727ebb79c2714 Mon Sep 17 00:00:00 2001 From: Victor Gaiva <13839490+VictorGaiva@users.noreply.github.com> Date: Sun, 3 Mar 2024 19:35:37 -0300 Subject: [PATCH] docs: Fix documentation syntax --- lib/producer/producer.ex | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/producer/producer.ex b/lib/producer/producer.ex index dc084ff..36bad27 100644 --- a/lib/producer/producer.ex +++ b/lib/producer/producer.ex @@ -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` """