diff options
author | Stavros Aronis <[email protected]> | 2011-11-30 22:39:09 +0100 |
---|---|---|
committer | Stavros Aronis <[email protected]> | 2011-12-01 11:55:10 +0100 |
commit | 832ce20b01c6dcf19de169a6df54e11e9abb62c9 (patch) | |
tree | cdbe668691a91cceda2dcfb54deacf2ae4804b7a /lib/kernel | |
parent | feeaaadd6101b57a9e1b044f4dc3001e9c475c44 (diff) | |
download | otp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.tar.gz otp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.tar.bz2 otp-832ce20b01c6dcf19de169a6df54e11e9abb62c9.zip |
Correct callback spec in application module
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/src/application.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kernel/src/application.erl b/lib/kernel/src/application.erl index caac4d926c..c299fb085c 100644 --- a/lib/kernel/src/application.erl +++ b/lib/kernel/src/application.erl @@ -59,7 +59,7 @@ -callback start(StartType :: normal | {takeover, node()} | {failover, node()}, StartArgs :: term()) -> - {ok, pid()} | {ok, pid(), State :: term()} | {error, Reason :: term}. + {'ok', pid()} | {'ok', pid(), State :: term()} | {'error', Reason :: term()}. -callback stop(State :: term()) -> term(). |