summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-03-25 14:29:40 +0100
committerHans Verkuil <hverkuil@xs4all.nl>2006-03-25 14:29:40 +0100
commit4a94881e9a2c8ffb02472f3727e88c108a3b1acf (patch)
tree45f68d59001b76ece64c2604404ebf33e87a04d7
parent4751a104ef6a2fd3d290a38a21f32ad03bde6690 (diff)
downloadmediapointer-dvb-s2-4a94881e9a2c8ffb02472f3727e88c108a3b1acf.tar.gz
mediapointer-dvb-s2-4a94881e9a2c8ffb02472f3727e88c108a3b1acf.tar.bz2
Fix typos.
From: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
-rw-r--r--README.HG4
-rwxr-xr-xv4l/scripts/prep_commit_msg.pl6
2 files changed, 5 insertions, 5 deletions
diff --git a/README.HG b/README.HG
index e661d493a..e940aaf70 100644
--- a/README.HG
+++ b/README.HG
@@ -60,7 +60,7 @@ below:
This will run some scripts that will check changed files, generating
a ChangeLog like comment (that will be removed from the commit) and
- prepare the last Signed-off-by field, as described bellow.
+ prepare the last Signed-off-by field, as described below.
7) Files can be added, removed or renamed at hg repository. This should
be done by using:
@@ -123,7 +123,7 @@ below:
Signed-off-by: Fake me <me@snakeoilcompany.com>
The email should be a valid one.
- The bottom signed-off-by should be the commiter.
+ The bottom signed-off-by should be the committer.
13) Commit messages are very relevant, since they will be used
when generating the patches for v4l-dvb.git and to mainstream.
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;