diff options
| author | Alexandru Scvortov <alexandru@rabbitmq.com> | 2011-09-07 15:58:52 +0100 |
|---|---|---|
| committer | Alexandru Scvortov <alexandru@rabbitmq.com> | 2011-09-07 15:58:52 +0100 |
| commit | ad8af8ddfa0e1666d76d1c7bddf65d1e7ce379c7 (patch) | |
| tree | 8f7d8eefe91dddd8f573092240800e8eaa75307a | |
| parent | 21a5868076c537257e519fb0a40073202ec07a15 (diff) | |
| download | rabbitmq-server-git-ad8af8ddfa0e1666d76d1c7bddf65d1e7ce379c7.tar.gz | |
improve comments a bit
| -rw-r--r-- | src/file2.erl | 3 | ||||
| -rw-r--r-- | src/filelib2.erl | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/file2.erl b/src/file2.erl index 00c3be3fdf..812009ad0f 100644 --- a/src/file2.erl +++ b/src/file2.erl @@ -1,6 +1,7 @@ %% This is a version of 'file' from R14B03, which runs calls to %% file_server2 thorugh the worker_pool and uses the file_name/1 -%% function from R12B-5. +%% function from R12B-5. Use this module when you expect a large +%% number of concurrent file operations. %% %% %CopyrightBegin% diff --git a/src/filelib2.erl b/src/filelib2.erl index d3dabf05a7..8fff040276 100644 --- a/src/filelib2.erl +++ b/src/filelib2.erl @@ -1,5 +1,6 @@ %% This is a version of 'filelib' from R14B03, which uses 'file2' -%% instead of 'file'. +%% instead of 'file'. Use this module when you expect a large number +%% of concurrent file operations. %% %% %CopyrightBegin% |
