aboutsummaryrefslogtreecommitdiff
path: root/test/unit
diff options
context:
space:
mode:
authorSeth Jackson <sethjackson@gmail.com>2016-01-15 17:05:43 -0500
committerMichael Reed <m.reed@mykolab.com>2016-01-16 18:34:31 -0500
commita7ade5c832dc5081afbc3f6bd21657491b27863a (patch)
treeddcdb7f2fa305203833f42ed1be7781b677b4889 /test/unit
parent0735b05c8296f4b73926fc7024f76d37241f390c (diff)
downloadrneovim-a7ade5c832dc5081afbc3f6bd21657491b27863a.tar.gz
rneovim-a7ade5c832dc5081afbc3f6bd21657491b27863a.tar.bz2
rneovim-a7ade5c832dc5081afbc3f6bd21657491b27863a.zip
misc: UNIX => Unix #4022
Although UNIX is a registered trademark of The Open Group, it doesn't really matter whether we refer to these systems as UNIX, Unix, or Unix-like. So, for consistency, refer to them collectively as Unix. Related: http://www.greens.org/about/unix.html http://www.unixica.com/html/unixunix.html
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/os/env_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/os/env_spec.lua b/test/unit/os/env_spec.lua
index e0e12a24f2..9e00a3e8f8 100644
--- a/test/unit/os/env_spec.lua
+++ b/test/unit/os/env_spec.lua
@@ -148,8 +148,8 @@ describe('env function', function()
local name = 'NEOVIM_UNIT_TEST_EXPAND_ENV_ESCN'
local value = 'NEOVIM_UNIT_TEST_EXPAND_ENV_ESCV'
os_setenv(name, value, 1)
- -- TODO(bobtwinkles) This only tests UNIX expansions. There should be a
- -- test for windows as well
+ -- TODO(bobtwinkles) This only tests Unix expansions. There should be a
+ -- test for Windows as well
local input1 = to_cstr('$NEOVIM_UNIT_TEST_EXPAND_ENV_ESCN/test')
local input2 = to_cstr('${NEOVIM_UNIT_TEST_EXPAND_ENV_ESCN}/test')
local output_buff1 = cstr(255, '')