Parcourir la source

Fixed bug in the sleep example.

Paul Downen il y a 14 ans
Parent
commit
956a3ba9c0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/sleepy_time.erl

+ 1 - 1
src/sleepy_time.erl

@@ -1,5 +1,5 @@
 -module(sleepy_time).
--export([sleepy_time/1]).
+-export([big_sleep/1]).
 
 big_sleep(N) ->
     Sleep = fun() -> timer:sleep(infinity) end,