--- shiela.pl 2004/05/10 13:38:24 1.56
+++ shiela.pl 2004/05/10 17:54:05 1.57
@@ -368,7 +368,7 @@
## Determine OSSP shiela configuration.
##
## We theoretically could directly operate on the syntax tree as
-## created by parse_config() above. But for convinience reasons and
+## created by parse_config() above. But for convenience reasons and
## to greatly simplify the processing, we use callback functions for
## parse_config() and build an own configuration structure.
## _________________________________________________________________
@@ -556,7 +556,7 @@
## required by most of the CVS client commands), e.g. when an import
## is done locally (no client/server). So we generally use the CVS
## client/server protocol to communicate with a spawned CVS server
-## process and act as we would be a regular CVS client. For convinience
+## process and act as we would be a regular CVS client. For convenience
## reasons, the communication is encapsulated in a "CVS" class object.
## _________________________________________________________________
##
@@ -658,7 +658,7 @@
}
}
-# convinience wrapper: receive a response
+# convenience wrapper: receive a response
sub result {
my $cvs = shift;
my $line;
@@ -674,7 +674,7 @@
}
}
-# convinience wrapper: provide a file entry
+# convenience wrapper: provide a file entry
sub entry {
my $cvs = shift;
my @files = @_;
@@ -684,7 +684,7 @@
}
}
-# convinience wrapper: provide one or more global options
+# convenience wrapper: provide one or more global options
sub global_options {
my $cvs = shift;
my @opts = @_;
@@ -693,7 +693,7 @@
}
}
-# convinience wrapper: provide one or more arguments
+# convenience wrapper: provide one or more arguments
sub arguments {
my $cvs = shift;
my @args = @_;
@@ -702,7 +702,7 @@
}
}
-# convinience wrapper: configure a directory
+# convenience wrapper: configure a directory
sub directory {
my $cvs = shift;
my ($dir) = @_;
@@ -811,7 +811,7 @@
##
## Common file operations.
##
-## This is nothing more than a convinience function for
+## This is nothing more than a convenience function for
## the common file operations we have do.
## _________________________________________________________________
##
|