diff options
author | Björn Gustavsson <[email protected]> | 2012-11-07 14:16:13 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-11-07 14:16:13 +0100 |
commit | f816de97c1fdbb96ca09a8980dab32ad2e1785e7 (patch) | |
tree | 3bbf1442af03ad86127527e4cb7ad21ef96c92a1 /lib | |
parent | 983b1a407119f427a9203769bb94784b1bf0563b (diff) | |
download | otp-f816de97c1fdbb96ca09a8980dab32ad2e1785e7.tar.gz otp-f816de97c1fdbb96ca09a8980dab32ad2e1785e7.tar.bz2 otp-f816de97c1fdbb96ca09a8980dab32ad2e1785e7.zip |
test_server_io: Correct a few comments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test_server/src/test_server_io.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/test_server/src/test_server_io.erl b/lib/test_server/src/test_server_io.erl index 7ec36d0c1f..e960b3087a 100644 --- a/lib/test_server/src/test_server_io.erl +++ b/lib/test_server/src/test_server_io.erl @@ -68,8 +68,8 @@ stop() -> %% Return a group leader (a process using the test_server_gl module). %% If Shared is true, the shared group leader is returned (suitable for %% running sequential test cases), otherwise a new group leader process -%% is spawned. Group leader processes will live until they are garbaged -%% collected by a call to gc/0. +%% is spawned. Group leader processes will live until the +%% 'test_server_io' process is stopped. get_gl(Shared) when is_boolean(Shared) -> req({get_gl,Shared}). @@ -95,7 +95,7 @@ start_transaction() -> %% end_transaction() %% %% End the transaction started by start_transaction/0. Subsequent calls to -%% print/3 will cause the message to be printed directory. +%% print/3 will cause the message to be printed directly. end_transaction() -> req({end_transaction,self()}). |