Fixed description typo

This commit is contained in:
Theodor Bjorkman 2025-02-28 19:13:20 +01:00
commit 17a503ec4d

View file

@ -22,13 +22,13 @@ in {
save_on_toggle = mkOption { save_on_toggle = mkOption {
type = bool; type = bool;
default = false; default = false;
description = '' any time the ui menu is closed then we will save the description = '' Any time the ui menu is closed then we will save the
state back to the backing list, not to the fs''; state back to the backing list, not to the fs'';
}; };
sync_on_ui_close = mkOption { sync_on_ui_close = mkOption {
type = bool; type = bool;
default = false; default = false;
description = '' any time the ui menu is closed then the state of the description = '' Any time the ui menu is closed then the state of the
list will be sync'd back to the fs''; list will be sync'd back to the fs'';
}; };
key = mkOption { key = mkOption {
@ -38,7 +38,7 @@ in {
return vim.loop.cwd() return vim.loop.cwd()
end end
''; '';
description = '' how the out list key is looked up. This can be useful description = '' How the out list key is looked up. This can be useful
when using worktrees and using git remote instead of file path''; when using worktrees and using git remote instead of file path'';
}; };
}; };