From e5576e2990419c3a44fd64671d526c0f3df766fe Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Fri, 3 Jun 2022 14:57:32 +0530 Subject: [PATCH] Fix typo --- src/init.lua | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/init.lua b/src/init.lua index ee930a2..626870a 100644 --- a/src/init.lua +++ b/src/init.lua @@ -251,7 +251,7 @@ xplr.config.general.table.col_widths = { -- Type: nullable string xplr.config.general.default_ui.prefix = "─ " --- The content which is appended to each it─em name for each row by default. +-- The content which is appended to each item name for each row by default. -- -- Type: nullable string xplr.config.general.default_ui.suffix = "" @@ -336,26 +336,22 @@ xplr.config.general.sort_and_filter_ui.default_identifier.style = {} -- The shape of the forward direction indicator for sort identifiers in Sort & filter panel. -- -- Type: nullable string -xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.forward.format = - "↓" +xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.forward.format = "↓" -- Style of forward direction indicator in Sort & filter panel. -- -- Type: [Style](https://xplr.dev/en/style) -xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.forward.style = - nil +xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.forward.style = nil -- The shape of the reverse direction indicator for sort identifiers in Sort & filter panel. -- -- Type: nullable string -xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.reverse.format = - "↑" +xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.reverse.format = "↑" -- Style of reverse direction indicator in Sort & filter panel. -- -- Type: [Style](https://xplr.dev/en/style) -xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.reverse.style = - nil +xplr.config.general.sort_and_filter_ui.sort_direction_identifiers.reverse.style = nil -- The identifiers used to denote applied sorters in the Sort & filter panel. --