diff options
author | Tuncer Ayaz <[email protected]> | 2011-02-25 09:39:09 +0100 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-02-25 16:47:59 +0100 |
commit | 49d0e593698955e96fb6cf82473bd88cb2103bb4 (patch) | |
tree | 19648e35365c14d5201a7019dae56efd966973ec /lib/stdlib/test | |
parent | 36fedbaec633e6afbe35877a688ac1a95516cdd4 (diff) | |
download | otp-49d0e593698955e96fb6cf82473bd88cb2103bb4.tar.gz otp-49d0e593698955e96fb6cf82473bd88cb2103bb4.tar.bz2 otp-49d0e593698955e96fb6cf82473bd88cb2103bb4.zip |
Fix trivial typos in supervisor_SUITE
Diffstat (limited to 'lib/stdlib/test')
-rw-r--r-- | lib/stdlib/test/supervisor_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/test/supervisor_SUITE.erl b/lib/stdlib/test/supervisor_SUITE.erl index 8aed93ce12..6e927da2ab 100644 --- a/lib/stdlib/test/supervisor_SUITE.erl +++ b/lib/stdlib/test/supervisor_SUITE.erl @@ -1310,7 +1310,7 @@ count_children_memory(Config) when is_list(Config) -> %% count_children consumes memory using an accumulator function, %% but the space can be reclaimed incrementally, - %% which_children may generate garbage that will reclaimed later. + %% which_children may generate garbage that will be reclaimed later. case (Size5 =< Size4) of true -> ok; false -> @@ -1338,8 +1338,8 @@ count_children_allocator_test(MemoryState) -> lists:all(fun(State) -> State == {e, true} end, AllocStates). %------------------------------------------------------------------------- do_not_save_start_parameters_for_temporary_children(doc) -> - ["Temporary children shall not be restarted so they should not" - "save start parameters, as it potentially can" + ["Temporary children shall not be restarted so they should not " + "save start parameters, as it potentially can " "take up a huge amount of memory for no purpose."]; do_not_save_start_parameters_for_temporary_children(suite) -> []; |