diff scripts/time/ctime.m @ 1382:000325177d87

[project @ 1995-09-12 07:20:43 by jwe]
author jwe
date Tue, 12 Sep 1995 07:20:43 +0000
parents 611d403c7f3d
children 5d29638dd524
line wrap: on
line diff
--- a/scripts/time/ctime.m
+++ b/scripts/time/ctime.m
@@ -18,12 +18,12 @@
 
 function retval = ctime (t)
 
-# usage: ctime (TMSTRUCT)
+# usage: ctime (TIME)
 
   if (nargin == 1)
     retval = asctime (localtime (t));
   else
-    usage ("ctime (TMSTRUCT)");
+    usage ("ctime (TIME)");
   endif
 
 endfunction