diff options
author | Tuncer Ayaz <[email protected]> | 2011-08-09 18:54:04 +0200 |
---|---|---|
committer | Tuncer Ayaz <[email protected]> | 2011-09-15 00:12:08 +0200 |
commit | 4d8af7116ea6e1bacf5d949810f63c8ec54249e6 (patch) | |
tree | b893778b2dd38abe49bdd28be9487c07f9ecb3c4 /lib/tools | |
parent | f2bde05d1659b7cf2b1d7ed28ca181d27ff27b5c (diff) | |
download | otp-4d8af7116ea6e1bacf5d949810f63c8ec54249e6.tar.gz otp-4d8af7116ea6e1bacf5d949810f63c8ec54249e6.tar.bz2 otp-4d8af7116ea6e1bacf5d949810f63c8ec54249e6.zip |
Fix typos in cover.erl
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/src/cover.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tools/src/cover.erl b/lib/tools/src/cover.erl index 905ad895c9..fb9744d759 100644 --- a/lib/tools/src/cover.erl +++ b/lib/tools/src/cover.erl @@ -55,14 +55,14 @@ %% compiled module. This is necessary so that the code can be loaded %% on remote nodes that are started after the compilation. %% -%% PARELLALISM +%% PARALLELISM %% To take advantage of SMP when doing the cover analysis both the data %% collection and analysis has been parallelized. One process is spawned for %% each node when collecting data, and on the remote node when collecting data %% one process is spawned per module. %% %% When analyzing data it is possible to issue multiple analyse(_to_file)/X -%% calls at once. They are however all calls (for backwardscompatability +%% calls at once. They are however all calls (for backwards compatibility %% reasons) so the user of cover will have to spawn several processes to to the %% calls ( or use async_analyse_to_file ). %% |