From 59e8e02f156474e9414b35f8d206b932b532d5cb Mon Sep 17 00:00:00 2001 From: Peter Crawley <49043380+Peter-Crawley@users.noreply.github.com> Date: Sat, 25 Feb 2023 09:25:55 +0000 Subject: [PATCH] Remove broken newline and mention zfs (#685) --- crates/eww/src/config/inbuilt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eww/src/config/inbuilt.rs b/crates/eww/src/config/inbuilt.rs index 672b6d6..fba822d 100644 --- a/crates/eww/src/config/inbuilt.rs +++ b/crates/eww/src/config/inbuilt.rs @@ -38,7 +38,7 @@ define_builtin_vars! { Duration::new(2, 0), // @prop { total_mem, free_mem, total_swap, free_swap, available_mem, used_mem, used_mem_perc } "EWW_RAM" => || Ok(DynVal::from(get_ram())), - // @desc EWW_DISK - Information on on all mounted partitions (Might report inaccurately on some filesystems, like btrfs)\nExample: `{EWW_DISK["/"]}` + // @desc EWW_DISK - Information on on all mounted partitions (Might report inaccurately on some filesystems, like btrfs and zfs) Example: `{EWW_DISK["/"]}` // @prop { : { name, total, free, used, used_perc } } "EWW_DISK" => || Ok(DynVal::from(get_disks())),