Repository: groovy Updated Branches: refs/heads/parrot 48dcfa0ac -> 7efbf9ab6
fix some badly formed string quoting Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/0bbcf684 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/0bbcf684 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/0bbcf684 Branch: refs/heads/parrot Commit: 0bbcf6840f5cfa8c7351cd2d615ecff2df05afa2 Parents: 716d3e6 Author: paulk <[email protected]> Authored: Tue Oct 4 06:50:23 2016 +1000 Committer: paulk <[email protected]> Committed: Tue Oct 4 06:50:57 2016 +1000 ---------------------------------------------------------------------- .../org/codehaus/groovy/tools/shell/commands/DocCommand.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/0bbcf684/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy ---------------------------------------------------------------------- diff --git a/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy b/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy index a18c847..40dadbf 100644 --- a/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy +++ b/subprojects/groovy-groovysh/src/main/groovy/org/codehaus/groovy/tools/shell/commands/DocCommand.groovy @@ -109,7 +109,7 @@ class DocCommand extends CommandSupport { } else if (hasAWTDesktopPlatformSupport) { browseWithAWT(urls) } else { - fail 'Browser could not be opened caused by missing platform support for 'java.awt.Desktop'. Please set ' + + fail 'Browser could not be opened due to missing platform support for "java.awt.Desktop". Please set ' + "a $ENV_BROWSER_GROOVYSH or $ENV_BROWSER environment variable referring to the browser binary to " + 'solve this issue.' }
