diff options
author | Henrik Nord <[email protected]> | 2015-10-13 12:02:52 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2015-10-13 12:02:52 +0200 |
commit | c101e41848aa8deadc2950723eacc56f0b4d4b4a (patch) | |
tree | eb0992000d1b53e3f32f5f7d69b1cfb60f31b7df /lib | |
parent | 10a6de6fbe038d2d8ac158d7bc3cf4858c26f2d9 (diff) | |
parent | 9066d71101d5ac78cdb9690c69d5f74de3e9d10e (diff) | |
download | otp-c101e41848aa8deadc2950723eacc56f0b4d4b4a.tar.gz otp-c101e41848aa8deadc2950723eacc56f0b4d4b4a.tar.bz2 otp-c101e41848aa8deadc2950723eacc56f0b4d4b4a.zip |
Merge branch 'RichMorin/patch-1' into maint
* RichMorin/patch-1:
fix capitalization of headings
OTP-13044
Diffstat (limited to 'lib')
-rw-r--r-- | lib/observer/src/observer_sys_wx.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/observer/src/observer_sys_wx.erl b/lib/observer/src/observer_sys_wx.erl index d6183d0249..dfd15380f2 100644 --- a/lib/observer/src/observer_sys_wx.erl +++ b/lib/observer/src/observer_sys_wx.erl @@ -83,11 +83,11 @@ update_syspage(#sys_wx_state{node = Node, fields=Fields, sizer=Sizer}) -> info_fields() -> Info = [{"System and Architecture", [{"System Version", otp_release}, - {"Erts Version", version}, + {"ERTS Version", version}, {"Compiled for", system_architecture}, {"Emulator Wordsize", wordsize_external}, {"Process Wordsize", wordsize_internal}, - {"Smp Support", smp_support}, + {"SMP Support", smp_support}, {"Thread Support", threads}, {"Async thread pool size", thread_pool_size} ]}, @@ -106,7 +106,7 @@ info_fields() -> {"Atoms", {bytes, atom}}, {"Binaries", {bytes, binary}}, {"Code", {bytes, code}}, - {"Ets", {bytes, ets}} + {"ETS", {bytes, ets}} ]}, {"Statistics", right, [{"Up time", {time_ms, uptime}}, |