Skip to content

Commit e89c619

Browse files
authored
Merge pull request #10313 from IngelaAndin/ingela/ssl/supervisor/doc-fix
stdlib: Fix since version
2 parents 169d1ae + 0a7229d commit e89c619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/stdlib/src/supervisor.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ count_children(Supervisor) ->
832832
call(Supervisor, count_children).
833833

834834
-doc(#{equiv => stop(SupRef, normal, infinity)}).
835-
-doc(#{since => <<"OTP 28.0">>}).
835+
-doc(#{since => <<"OTP 29.0">>}).
836836
-spec stop(SupRef :: sup_ref()) -> ok.
837837
stop(Supervisor) ->
838838
gen_server:stop(Supervisor).
@@ -865,7 +865,7 @@ if the connection fails to the remote `Node` where the supervisor runs.
865865
> will result in a deadlock which will last until either the shutdown timeout
866866
> of the child or the timeout given to `stop/3` has expired.
867867
""".
868-
-doc(#{since => <<"OTP 28.0">>}).
868+
-doc(#{since => <<"OTP 29.0">>}).
869869
-spec stop(SupRef :: sup_ref(), Reason :: term(), Timeout :: timeout()) -> ok.
870870
stop(Supervisor, Reason, Timeout) ->
871871
gen_server:stop(Supervisor, Reason, Timeout).

0 commit comments

Comments
 (0)