You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2015/08/27 03:17:59 UTC

incubator-groovy git commit: Correct spelling of "Windowz" to "Windows" (closes #87)

Repository: incubator-groovy
Updated Branches:
  refs/heads/master eeb64d885 -> 7563d5b72


Correct spelling of "Windowz" to "Windows" (closes #87)


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/7563d5b7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/7563d5b7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/7563d5b7

Branch: refs/heads/master
Commit: 7563d5b72a4eb38c0bc9fa34489d29b908eaf44b
Parents: eeb64d8
Author: Anders D. Johnson <ad...@users.noreply.github.com>
Authored: Mon Aug 17 17:36:10 2015 -0500
Committer: paulk <pa...@asert.com.au>
Committed: Thu Aug 27 11:17:01 2015 +1000

----------------------------------------------------------------------
 src/bin/startGroovy.bat | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/7563d5b7/src/bin/startGroovy.bat
----------------------------------------------------------------------
diff --git a/src/bin/startGroovy.bat b/src/bin/startGroovy.bat
index 7d86dd3..6675283 100644
--- a/src/bin/startGroovy.bat
+++ b/src/bin/startGroovy.bat
@@ -20,7 +20,7 @@
 @if "%DEBUG%" == "" @echo off
 @rem ##########################################################################
 @rem                                                                         ##
-@rem  Groovy JVM Bootstrap for Windowz                                       ##
+@rem  Groovy JVM Bootstrap for Windows                                       ##
 @rem                                                                         ##
 @rem ##########################################################################
 
@@ -131,7 +131,7 @@ shift
 :init
 @rem get name of script to launch with full path
 set GROOVY_SCRIPT_NAME=%~f1
-@rem Get command-line arguments, handling Windowz variants
+@rem Get command-line arguments, handling Windows variants
 if not "%OS%" == "Windows_NT" goto win9xME_args
 if "%eval[2+2]" == "4" goto 4NT_args
 
@@ -150,7 +150,7 @@ if not defined _ARGS goto execute
 set _ARGS=%_ARGS:-=-d%
 set _ARGS=%_ARGS:"=-q%
 set _ARGS=%_ARGS:?=-n%
-rem Windowz will try to match * with files so we escape it here
+rem Windows will try to match * with files so we escape it here
 rem but it is also a meta char for env var string substitution
 rem so it can't be first char here, hack just for common cases.
 rem If in doubt use a space or bracket before * if using -e.