diff options
Diffstat (limited to 'v4l')
-rwxr-xr-x | v4l/scripts/prep_commit_msg.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/v4l/scripts/prep_commit_msg.pl b/v4l/scripts/prep_commit_msg.pl index 9c4447313..ac958667b 100755 --- a/v4l/scripts/prep_commit_msg.pl +++ b/v4l/scripts/prep_commit_msg.pl @@ -20,8 +20,8 @@ if ( $user eq "" ) { $user="$name <$email>"; } -$first= "# Please change bellow if you are not patch author\n#\nFrom: $user"; -$out= "# At the end Signed-off-by: fields by patch author and commiter, at least\n#\nSigned-off-by: $user"; +$first= "# Please change below if you are not patch author\n#\nFrom: $user"; +$out= "# At the end Signed-off-by: fields by patch author and committer, at least\n#\nSigned-off-by: $user"; $from= "From: $user"; printf "#Added/removed/changed files:\n%s#\n" . @@ -29,6 +29,6 @@ printf "#Added/removed/changed files:\n%s#\n" . "# and before signed-off-by\n" . "# First line should be the subject, without Subject:\n#\n\n\n" . "# Now, patch author (just the main one), on a From: field\n" . - "# Please change bellow if the commiter is not the patch author\n#\n%s\n\n" . + "# Please change below if the committer is not the patch author\n#\n%s\n\n" . "# Then a detailed description:\n\n\n%s", $changed,$from,$out; |