Update spec to include accumulator in timeout response

BugzID: 11432
diff --git a/src/rexi_utils.erl b/src/rexi_utils.erl
index bb2a4c1..e53df34 100644
--- a/src/rexi_utils.erl
+++ b/src/rexi_utils.erl
@@ -4,7 +4,7 @@
 
 %% @doc set up the receive loop with an overall timeout
 -spec recv([any()], integer(), function(), any(), timeout(), timeout()) ->
-    {ok, any()} | timeout | {error, atom()} | {error, atom(), any()}.
+    {ok, any()} | {timeout, any()} | {error, atom()} | {error, atom(), any()}.
 recv(Refs, Keypos, Fun, Acc0, infinity, PerMsgTO) ->
     process_mailbox(Refs, Keypos, Fun, Acc0, nil, PerMsgTO);
 recv(Refs, Keypos, Fun, Acc0, GlobalTimeout, PerMsgTO) ->