Typos und spellcheck: unkown -> unknown
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 18 Jan 2019 12:50:31 +0000 (13:50 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 18 Jan 2019 13:16:01 +0000 (14:16 +0100)
SL/Controller/File.pm
SL/Helper/Csv.pm
t/006spellcheck.t
t/helper/csv.t
t/helper/object.t

index 8463174..3412ffb 100644 (file)
@@ -321,9 +321,9 @@ sub check_object_params {
   } elsif ( $::form->{object_type} ) {
     $type = $::form->{object_type};
   }
-  die "No object type"     unless $type;
-  die "No file type"       unless $::form->{file_type};
-  die "Unkown object type" unless $file_types{$type};
+  die "No object type"      unless $type;
+  die "No file type"        unless $::form->{file_type};
+  die "Unknown object type" unless $file_types{$type};
 
   $self->is_global($gldoc);
   $self->file_type($::form->{file_type});
index cea43ae..e9fd45c 100644 (file)
@@ -502,7 +502,7 @@ See section L</PROFILE> for information on this topic.
 
 =item C<ignore_unknown_columns>
 
-If set, the import will ignore unkown header columns. Useful for lazy imports,
+If set, the import will ignore unknown header columns. Useful for lazy imports,
 but deactivated by default.
 
 =item C<case_insensitive_header>
index 9223676..bc511a4 100644 (file)
@@ -52,6 +52,7 @@ puhs
 sekf
 seperat
 sucess
+unkown
 varsion
 wether
 );
index 7997fe7..13bcba7 100644 (file)
@@ -141,7 +141,7 @@ EOL
   profile => [{class  => 'SL::DB::Part'}],
 );
 $csv->parse;
-is $csv->get_objects->[0]->lastcost, '1221.52', 'ignore_unkown_columns works';
+is $csv->get_objects->[0]->lastcost, '1221.52', 'ignore_unknown_columns works';
 
 #####
 
index 8f4095b..f61c894 100644 (file)
@@ -163,6 +163,6 @@ eval { package T::Helper::Object::Test6;
   $dies = 0;
   1;
 };
-ok $dies, 'unkown parameter dies';
+ok $dies, 'unknown parameter dies';
 
 1;