This is an automated email from the ASF dual-hosted git repository.
onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new b3227d7 GEODE-6799: fix tests on windows
b3227d7 is described below
commit b3227d7ac52dc93e6de56ab62506b80a39a8add1
Author: Owen Nichols <[email protected]>
AuthorDate: Mon Jul 29 13:38:18 2019 -0700
GEODE-6799: fix tests on windows
---
.../main/java/org/apache/geode/management/internal/cli/help/Helper.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/help/Helper.java
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/help/Helper.java
index cf712d4..8634269 100644
---
a/geode-core/src/main/java/org/apache/geode/management/internal/cli/help/Helper.java
+++
b/geode-core/src/main/java/org/apache/geode/management/internal/cli/help/Helper.java
@@ -177,7 +177,7 @@ public class Helper {
if (builder.length() > 0) {
String commandName = cliCommand.value()[0];
builder.append("Use \"help ").append(commandName)
- .append("\" (without the quotes) to display detailed usage
information.")
+ .append("\" (without the quotes) for detailed usage information.")
.append(GfshParser.LINE_SEPARATOR);
return builder.toString();
} else {