diff options
author | Marek Majkowski <majek@lshift.net> | 2010-01-29 12:46:52 -0500 |
---|---|---|
committer | Marek Majkowski <majek@lshift.net> | 2010-01-29 12:46:52 -0500 |
commit | 9ca4b2fb447817f195c75e8234b0d9ad11ead0c0 (patch) | |
tree | fe0c3774d63f3bbefe808f655e6edf1e4d259433 | |
parent | b786957d96c74b9cd7fc95ecc1fb196507ba7c70 (diff) | |
download | rabbitmq-server-9ca4b2fb447817f195c75e8234b0d9ad11ead0c0.tar.gz |
bug22266: fixed language in a comment, due to suggestion from Sophiebug22266
-rw-r--r-- | src/vm_memory_monitor.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm_memory_monitor.erl b/src/vm_memory_monitor.erl index e0afabc1..02bd0499 100644 --- a/src/vm_memory_monitor.erl +++ b/src/vm_memory_monitor.erl @@ -261,13 +261,13 @@ get_total_memory({unix,freebsd}) -> PageCount * PageSize; get_total_memory({win32,_OSname}) -> - %% Due to erlang print format bug, on windows boxes the memory size is + %% Due to the Erlang print format bug, on Windows boxes the memory size is %% broken. For example Windows 7 64 bit with 4Gigs of RAM we get negative %% memory size: %% > os_mon_sysinfo:get_mem_info(). %% ["76 -1658880 1016913920 -1 -1021628416 2147352576 2134794240\n"] - %% Due to that bug, we actually don't know anything. Even if the number is - %% postive we can't be sure if it's sane. + %% Due to this bug, we don't actually know anything. Even if the number is + %% postive we can't be sure if it's correct. unknown; get_total_memory({unix, linux}) -> |