changeset 1382:000325177d87

[project @ 1995-09-12 07:20:43 by jwe]
author jwe
date Tue, 12 Sep 1995 07:20:43 +0000
parents 4b01352e52d8
children d0bdfca51b42
files scripts/time/ctime.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/time/ctime.m	Tue Sep 12 07:10:57 1995 +0000
+++ b/scripts/time/ctime.m	Tue Sep 12 07:20:43 1995 +0000
@@ -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