changeset 9868:df40249d6241 octave-forge

Fix typo: Unkown => Unknown
author thomas-weber
date Sun, 25 Mar 2012 20:50:59 +0000
parents 43a299e8b504
children c84a96100739
files main/octcdf/src/ov-netcdf.cc
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/main/octcdf/src/ov-netcdf.cc	Sun Mar 25 17:01:24 2012 +0000
+++ b/main/octcdf/src/ov-netcdf.cc	Sun Mar 25 20:50:59 2012 +0000
@@ -682,7 +682,7 @@
 
     default: {
 	status = NC_NOERR;
-	error("Unkown type of variable: %d", nctype);        
+	error("Unknown type of variable: %d", nctype);        
     } 
   }
 
@@ -802,7 +802,7 @@
       }
 
     default:  {
-	error("Unkown type of variable: %d", nctype);
+	error("Unknown type of variable: %d", nctype);
         
       } 
     }
@@ -942,7 +942,7 @@
 
       default: {
 	status = NC_NOERR;
-	error("Unkown type of variable: %d", nctype);        
+	error("Unknown type of variable: %d", nctype);        
       } 
     }
 
@@ -1021,7 +1021,7 @@
   else if (name == "double")
     return NC_DOUBLE;
   else {
-    error("Unkown type: %s",name.c_str());
+    error("Unknown type: %s",name.c_str());
     return NC_NAT ;
   }
 }