Skip to content

Commit 37cca47

Browse files
committed
typo fix
1 parent 4e2b057 commit 37cca47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/elysium_serial_queue.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ handle_call({checkin, Queue_Data}, _From, #state{queue=Queue, checkin_count=Chec
8383
handle_call(checkout, _From, #state{queue=Queue, checkout_count=Checkouts} = St) ->
8484
{Value, New_Queue} = queue:out(Queue),
8585
New_Count = Checkouts + 1,
86-
{reply, Value, St#state{queue=New_Queue, checkin_count=New_Count}};
86+
{reply, Value, St#state{queue=New_Queue, checkout_count=New_Count}};
8787

8888
handle_call(checkin_count, _From, #state{checkin_count=Count} = St) -> {reply, Count, St};
8989
handle_call(checkout_count, _From, #state{checkout_count=Count} = St) -> {reply, Count, St};

0 commit comments

Comments
 (0)