aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/gen_fsm.erl
diff options
context:
space:
mode:
authorAndrew Dryga <[email protected]>2017-02-12 19:54:46 +0200
committerAndrew Dryga <[email protected]>2017-02-14 11:32:55 +0200
commita3291799c29e82bb2725a589ef0f804dfbd9eac7 (patch)
treeb5ba094e415feb988f0d192183eceb14c4ca6713 /lib/stdlib/src/gen_fsm.erl
parentc53abbaca0298b11224c9c09294a575584ae85a5 (diff)
downloadotp-a3291799c29e82bb2725a589ef0f804dfbd9eac7.tar.gz
otp-a3291799c29e82bb2725a589ef0f804dfbd9eac7.tar.bz2
otp-a3291799c29e82bb2725a589ef0f804dfbd9eac7.zip
Fixed typos in lib/stdlib
Diffstat (limited to 'lib/stdlib/src/gen_fsm.erl')
-rw-r--r--lib/stdlib/src/gen_fsm.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/gen_fsm.erl b/lib/stdlib/src/gen_fsm.erl
index 6e7528fd98..e925a75fe8 100644
--- a/lib/stdlib/src/gen_fsm.erl
+++ b/lib/stdlib/src/gen_fsm.erl
@@ -273,7 +273,7 @@ start_timer(Time, Msg) ->
send_event_after(Time, Event) ->
erlang:start_timer(Time, self(), {'$gen_event', Event}).
-%% Returns the remaing time for the timer if Ref referred to
+%% Returns the remaining time for the timer if Ref referred to
%% an active timer/send_event_after, false otherwise.
cancel_timer(Ref) ->
case erlang:cancel_timer(Ref) of