From 1541de1a728e10ca081f106251bbba5ebf8e2254 Mon Sep 17 00:00:00 2001 From: Roger Hayes Date: Tue, 24 Apr 2012 13:56:29 -0500 Subject: [PATCH] Correct typo in command line help text. --- .../src/main/java/liquibase/integration/commandline/Main.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java b/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java index bcd088e239d..4eb4e29a254 100644 --- a/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java +++ b/liquibase-core/src/main/java/liquibase/integration/commandline/Main.java @@ -415,7 +415,7 @@ protected void printHelp(PrintStream stream) { stream.println(" updateSQL Writes SQL to update database to current"); stream.println(" version to STDOUT"); stream.println(" updateCount Applies next NUM changes to the database"); - stream.println(" updateSQL Writes SQL to apply next NUM changes"); + stream.println(" updateCountSQL Writes SQL to apply next NUM changes"); stream.println(" to the database"); stream.println(" rollback Rolls back the database to the the state is was"); stream.println(" when the tag was applied");