Skip to content

Commit

Permalink
Fix bug in warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
FelonEkonom committed Oct 29, 2024
1 parent 3be9b3a commit d514522
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/membrane/core/element/pad_controller.ex
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ defmodule Membrane.Core.Element.PadController do
This element has multiple input pads with `flow_control: :auto` and multiple output pads with \
`flow_control: :auto` at the same time. Notice, that lack of demand on any of output pads with \
`flow_control: :auto` will cause stoping demand on every input pad with `flow_control: :auto`.
Input pads with `flow_control: :auto`: #{auto_input_pads |> Enum.map(&elem(&1, 0)) |> Enum.join(", ")}.
Output pads with `flow_control: :auto`: #{auto_output_pads |> Enum.map(&elem(&1, 0)) |> Enum.join(", ")}.
Input pads with `flow_control: :auto`: #{auto_input_pads}.
Output pads with `flow_control: :auto`: #{auto_output_pads}.
""")
end

Expand Down

0 comments on commit d514522

Please sign in to comment.