Skip to content

Commit f0731e9

Browse files
committed
move misplaced comment
1 parent a8c4a6c commit f0731e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gen_server2.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -616,11 +616,11 @@ in(Input, Priority, GS2State = #gs2_state { queue = Queue }) ->
616616

617617
process_msg({system, From, Req},
618618
GS2State = #gs2_state { parent = Parent, debug = Debug }) ->
619+
%% gen_server puts Hib on the end as the 7th arg, but that version
620+
%% of the fun seems not to be documented so leaving out for now.
619621
sys:handle_system_msg(Req, From, Parent, ?MODULE, Debug, GS2State);
620622
process_msg({'EXIT', Parent, Reason} = Msg,
621623
GS2State = #gs2_state { parent = Parent }) ->
622-
%% gen_server puts Hib on the end as the 7th arg, but that version
623-
%% of the fun seems not to be documented so leaving out for now.
624624
terminate(Reason, Msg, GS2State);
625625
process_msg(Msg, GS2State = #gs2_state { debug = [] }) ->
626626
handle_msg(Msg, GS2State);

0 commit comments

Comments
 (0)