From 75a548c7a16d84548ad71ec2d25ddffe973f5a1e Mon Sep 17 00:00:00 2001 From: Kerem Bozdas Date: Sat, 26 Nov 2022 22:36:11 +0300 Subject: Fix typos in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index baf5881..431c8fb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Neovim Tasks -A Neovim 0.7+ plugin that provides a statefull task system focused on integration with build systems. +A Neovim 0.7+ plugin that provides a stateful task system focused on integration with build systems. Tasks in this plugin are provided by modules that implement functionality for a specific build system. Modules can have custom parameters which user can set via `:Task set_module_param` (like current target or build type). Tasks consists of one or more commands and have `args` and `env` parameters to set arguments and environment variable respectively. All this settings are serializable and will be stored in configuration file in your project directory. @@ -99,7 +99,7 @@ To create a module just put a lua file under `lua/tasks/modules` in your configu params = { -- A table of parameter names. Possible values: 'parameter_name1', -- A string parameter, on setting user will be prompted with vim.ui.input. - parameter_name2 = { 'one', 'two' }, -- A table with possible balues, on setting user will be promted with vim.ui.select to pick one of these values. + parameter_name2 = { 'one', 'two' }, -- A table with possible values, on setting user will be prompted with vim.ui.select to pick one of these values. parameter_name3 = func, -- A function that generates a string or a table. } condition = function() return Path:new('file'):exists() end -- A function that returns `true` if this module could be applied to this directory. Used when `auto` is used as module name. -- cgit v1.2.3