summaryrefslogtreecommitdiff
path: root/scripts/log2cl.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/log2cl.pl')
-rwxr-xr-xscripts/log2cl.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/log2cl.pl b/scripts/log2cl.pl
index 894736a65..a20cd220a 100755
--- a/scripts/log2cl.pl
+++ b/scripts/log2cl.pl
@@ -17,7 +17,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
# Simple script to massage "git log" output into a GNU style ChangeLog.
-# The goal is to emulate "hg log --style=changelog" via perl format.
+# The goal is to emulate "hg log --template=changelog" via perl format.
use Getopt::Std;
use Text::Wrap;
@@ -46,7 +46,7 @@ my $key_date = "";
my $log_size = 0;
my @lines;
-# Wrap like "hg log --style=changelog"
+# Wrap like "hg log --template=changelog"
$Text::Wrap::columns = 77;
while (<LOG>) {