aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlle Jonsson <[email protected]>2020-07-21 16:49:28 +0200
committerLoïc Hoguin <[email protected]>2020-09-10 15:06:56 +0200
commit36e655405003a5898ff0fa234b0da3e2b208f647 (patch)
treeaf5b73655bb94ddef9dde50e61ccd27b2948a288
parent03a8256e989091d7d153b8632c25fdc64c88ada1 (diff)
downloadranch-36e655405003a5898ff0fa234b0da3e2b208f647.tar.gz
ranch-36e655405003a5898ff0fa234b0da3e2b208f647.tar.bz2
ranch-36e655405003a5898ff0fa234b0da3e2b208f647.zip
Fix typo in comment explictly -> explicitly
-rw-r--r--src/ranch_server.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ranch_server.erl b/src/ranch_server.erl
index 8ef22f3..991f1a7 100644
--- a/src/ranch_server.erl
+++ b/src/ranch_server.erl
@@ -79,7 +79,7 @@ cleanup_listener_opts(Ref) ->
%% cases when calling stop_listener followed by get_connections_sup,
%% we could end up with the pid still being returned, when we
%% expected a crash (because the listener was stopped).
- %% Deleting it explictly here removes any possible confusion.
+ %% Deleting it explicitly here removes any possible confusion.
_ = ets:match_delete(?TAB, {{conns_sup, Ref, '_'}, '_'}),
_ = ets:delete(?TAB, {stats_counters, Ref}),
%% Ditto for the listener supervisor.