diff options
author | hwspeedy <ns@bigbear.dk> | 2024-04-02 12:57:07 +0200 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-04-02 12:57:07 +0200 |
commit | 6db52aabfbca3c41fc50032b9fa7d8ef7b9c16cf (patch) | |
tree | df22bbe40fe3f93282eebcc6224cfc19939ebc0f | |
parent | 74f4e2e6750f291a19156ebe04ac2fdf2f87a2bd (diff) |
FIX space infront of field descriptor
-rw-r--r-- | modules/computer/memory_usage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/computer/memory_usage.c b/modules/computer/memory_usage.c index a256194b..a0f2e10c 100644 --- a/modules/computer/memory_usage.c +++ b/modules/computer/memory_usage.c @@ -151,7 +151,7 @@ void init_memory_labels(void) { "Zswap", N_("Memory consumed by the zswap backend (compressed size)") }, { "Zswapped", N_("Amount of anonymous memory stored in zswap (original size)") }, { "Dirty", N_("Memory waiting to be written back to disk") }, - { "Writeback", N_(" Memory which is actively being written back to disk") }, + { "Writeback", N_("Memory which is actively being written back to disk") }, { "AnonPages", N_("Non-file backed pages mapped into userspace page tables") }, { "Mapped", N_("Files which have been mmapped, such as libraries") }, { "Shmem", N_("Total memory used by shared memory (shmem) and tmpfs") }, |