plugins/{nvim-tree,neorg}: fix typo (#201)

This commit is contained in:
Gaétan Lepage 2023-02-25 18:31:15 +01:00 committed by GitHub
parent fa55352234
commit 1abdc90411
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -129,7 +129,7 @@ in
in in
if (isInt level) if (isInt level)
then level then level
else helpers.mkRaw "vim.log.levels.${string.toUpper level}"; else helpers.mkRaw "vim.log.levels.${strings.toUpper level}";
}) })
cfg.logger.modes; cfg.logger.modes;
float_precision = cfg.logger.floatPrecision; float_precision = cfg.logger.floatPrecision;

View file

@ -994,7 +994,7 @@ in {
name: value: name: value:
if value == null if value == null
then null then null
else helpers.mkRaw "vim.diagnostic.severity.${string.toUpper value}" else helpers.mkRaw "vim.diagnostic.severity.${strings.toUpper value}"
) )
severity; severity;
}; };