diff options
author | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-07-06 13:16:38 +0100 |
---|---|---|
committer | Alexandru Scvortov <alexandru@rabbitmq.com> | 2010-07-06 13:16:38 +0100 |
commit | 59765b71999e62a394f45d5b4b0ad5cb53812b64 (patch) | |
tree | 88f4edfd2b5918f61930aa13a4459b7c665d5e3c /src/worker_pool_sup.erl | |
parent | d0a64ac6a7d82c4512e0926a54cdc41c8dfe4e71 (diff) | |
download | rabbitmq-server-59765b71999e62a394f45d5b4b0ad5cb53812b64.tar.gz |
cleanup
Diffstat (limited to 'src/worker_pool_sup.erl')
-rw-r--r-- | src/worker_pool_sup.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/worker_pool_sup.erl b/src/worker_pool_sup.erl index 3d9d5b16..220b4bad 100644 --- a/src/worker_pool_sup.erl +++ b/src/worker_pool_sup.erl @@ -41,9 +41,11 @@ -ifdef(use_specs). --spec(start_link/0 :: () -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). +-spec(start_link/0 :: + () -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). -spec(start_link/1 :: - (non_neg_integer()) -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). + (non_neg_integer()) + -> rabbit_types:ok(pid()) | 'ignore' | rabbit_types:error(any())). -endif. |