From 65c64d9aaa88283b33f2ef83c6004037d0610278 Mon Sep 17 00:00:00 2001 From: Jakub Perzylo Date: Mon, 20 Feb 2023 11:40:09 +0100 Subject: [PATCH] Fix pipeline's call function spec --- lib/membrane/pipeline.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/membrane/pipeline.ex b/lib/membrane/pipeline.ex index e6002704e..6f47b61bb 100644 --- a/lib/membrane/pipeline.ex +++ b/lib/membrane/pipeline.ex @@ -374,7 +374,7 @@ defmodule Membrane.Pipeline do end end - @spec call(pid, any, timeout()) :: :ok + @spec call(pid, any, timeout()) :: term() def call(pipeline, message, timeout \\ 5000) do GenServer.call(pipeline, message, timeout) end