diff options
author | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-13 04:26:45 +0100 |
---|---|---|
committer | Matthias Radestock <matthias@rabbitmq.com> | 2010-08-13 04:26:45 +0100 |
commit | 47f5b3df329ca7b75e0e090e9bd09338fe716b4d (patch) | |
tree | 20bd1e0f4f49a4131b1b9c5c3bc453481eeec562 /src/gatherer.erl | |
parent | 1f982ed96126acf6654bd9db7bed34f21556eaf4 (diff) | |
download | rabbitmq-server-47f5b3df329ca7b75e0e090e9bd09338fe716b4d.tar.gz |
use consistent return types for start/start_link functionsbug23120
Diffstat (limited to 'src/gatherer.erl')
-rw-r--r-- | src/gatherer.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gatherer.erl b/src/gatherer.erl index 31dda16e..1e03d6c4 100644 --- a/src/gatherer.erl +++ b/src/gatherer.erl @@ -42,7 +42,7 @@ -ifdef(use_specs). --spec(start_link/0 :: () -> {'ok', pid()} | 'ignore' | {'error', any()}). +-spec(start_link/0 :: () -> {'ok', pid()} | {'error', any()}). -spec(stop/1 :: (pid()) -> 'ok'). -spec(fork/1 :: (pid()) -> 'ok'). -spec(finish/1 :: (pid()) -> 'ok'). |