summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Majkowski <majek@lshift.net>2010-01-29 12:46:52 -0500
committerMarek Majkowski <majek@lshift.net>2010-01-29 12:46:52 -0500
commit0ddffb40779e5a65bc3ef61141b60ef97399c50e (patch)
treefe0c3774d63f3bbefe808f655e6edf1e4d259433
parentf1c34ec00bb3d908e7833528812889be4a2a0a30 (diff)
downloadrabbitmq-server-git-0ddffb40779e5a65bc3ef61141b60ef97399c50e.tar.gz
bug22266: fixed language in a comment, due to suggestion from Sophie
-rw-r--r--src/vm_memory_monitor.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm_memory_monitor.erl b/src/vm_memory_monitor.erl
index e0afabc17c..02bd04991e 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}) ->