Explorar el Código

Fixed bug in the sleep example.

Paul Downen hace 14 años
padre
commit
956a3ba9c0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,