diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-03-28 02:32:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-28 09:32:32 +0800 |
commit | a89ce89742db600665b69e58d5e1bc3dbee9d57b (patch) | |
tree | fdb467f608d96c293aa51b4c1e7291e8bc0de825 /test | |
parent | 4ee9e58056a9d17ce921d8cc6dfd6d3305a40f69 (diff) | |
download | rneovim-a89ce89742db600665b69e58d5e1bc3dbee9d57b.tar.gz rneovim-a89ce89742db600665b69e58d5e1bc3dbee9d57b.tar.bz2 rneovim-a89ce89742db600665b69e58d5e1bc3dbee9d57b.zip |
docs: fix typos (#27868)
Co-authored-by: ite-usagi <77563904+ite-usagi@users.noreply.github.com>
Co-authored-by: v-sim <56476039+v-sim@users.noreply.github.com>
Co-authored-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Co-authored-by: Quico Augustijn <quico.public@gmail.com>
Co-authored-by: nhld <nahnera@gmail.com>
Co-authored-by: francisco souza <108725+fsouza@users.noreply.github.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/README.md | 8 | ||||
-rw-r--r-- | test/old/testdir/test.sh | 2 | ||||
-rw-r--r-- | test/unit/helpers.lua | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/test/README.md b/test/README.md index 3aafe1273e..a86f6ee818 100644 --- a/test/README.md +++ b/test/README.md @@ -252,7 +252,7 @@ by the semantic component they are testing. - _Functional tests_ ([test/functional](https://github.com/neovim/neovim/tree/master/test/functional)) are higher-level (plugins and user input) than unit tests; they are organized - by concept. + by concept. - Try to find an existing `test/functional/*/*_spec.lua` group that makes sense, before creating a new one. @@ -276,9 +276,9 @@ the file). Configuration ============= -Test behaviour is affected by environment variables. Currently supported -(Functional, Unit, Benchmarks) (when Defined; when set to _1_; when defined, -treated as Integer; when defined, treated as String; when defined, treated as +Test behaviour is affected by environment variables. Currently supported +(Functional, Unit, Benchmarks) (when Defined; when set to _1_; when defined, +treated as Integer; when defined, treated as String; when defined, treated as Number; !must be defined to function properly): - `BUSTED_ARGS` (F) (U): arguments forwarded to `busted`. diff --git a/test/old/testdir/test.sh b/test/old/testdir/test.sh index 6e7fa9db18..cb6feb4e68 100644 --- a/test/old/testdir/test.sh +++ b/test/old/testdir/test.sh @@ -58,7 +58,7 @@ check_core_dumps() { } check_logs() { - # Iterate through each log to remove an useless warning. + # Iterate through each log to remove a useless warning. # shellcheck disable=SC2044 for log in $(find "${1}" -type f -name "${2}"); do sed -i "${log}" \ diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index ab4a59cfdb..be48f777e8 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -209,7 +209,7 @@ local function cimport(...) local new_cdefs = Set:new() for line in body:gmatch('[^\r\n]+') do line = trim(line) - -- give each #pragma pack an unique id, so that they don't get removed + -- give each #pragma pack a unique id, so that they don't get removed -- if they are inserted into the set -- (they are needed in the right order with the struct definitions, -- otherwise luajit has wrong memory layouts for the structs) |