From 440a589f9e47ae04ac050c0d40bd58f77cef49b2 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Thu, 13 May 2021 14:21:16 -0500 Subject: [PATCH] changed comment slightly --- crates/nu-engine/src/evaluate/variables.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-engine/src/evaluate/variables.rs b/crates/nu-engine/src/evaluate/variables.rs index 30bc6e1b7..5c8afa0fc 100644 --- a/crates/nu-engine/src/evaluate/variables.rs +++ b/crates/nu-engine/src/evaluate/variables.rs @@ -53,7 +53,7 @@ pub fn nu( // A note about environment variables: // // Environment variables in Unix platforms are case-sensitive. On Windows, case-sensitivity is context-dependent. - // In DOS, running `SET` will show you the list of environment variables, but their names will be all upper-cased. + // In cmd.exe, running `SET` will show you the list of environment variables and their names will be mixed case. // In PowerShell, running `Get-ChildItem Env:` will show you a list of environment variables, and they will match // the case in the environment variable section of the user configuration //