changeset 23968:b95a09103ddc

maint: fix typos of "daylight saving time" * system.txi (Timing Utilities): Fix typo of "daylight saving time". * oct-time.h (octave::base_tm): Likewise. * now.m: Likewise.
author Mike Miller <mtmiller@octave.org>
date Tue, 29 Aug 2017 10:52:11 -0700
parents df726a12c757
children c46791c20a73
files doc/interpreter/system.txi liboctave/system/oct-time.h scripts/time/now.m
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/system.txi	Tue Aug 29 10:40:16 2017 -0700
+++ b/doc/interpreter/system.txi	Tue Aug 29 10:52:11 2017 -0700
@@ -78,7 +78,7 @@
 Days since January 1 (0-365).
 
 @item isdst
-Daylight Savings Time flag.
+Daylight saving time flag.
 
 @item gmtoff
 Seconds offset from UTC.
--- a/liboctave/system/oct-time.h	Tue Aug 29 10:40:16 2017 -0700
+++ b/liboctave/system/oct-time.h	Tue Aug 29 10:52:11 2017 -0700
@@ -283,7 +283,7 @@
       // Days since January 1 (0, 365).
       int m_yday;
 
-      // Daylight Savings Time flag.
+      // Daylight saving time flag.
       int m_isdst;
 
       // Time zone.
--- a/scripts/time/now.m	Tue Aug 29 10:40:16 2017 -0700
+++ b/scripts/time/now.m	Tue Aug 29 10:52:11 2017 -0700
@@ -47,7 +47,7 @@
   ##   t = (time - mktime(gmtime(0)))/86400 + 719529;
   ##
   ## mktime (gmtime (0)) does indeed return the offset from Greenwich to the
-  ## local time zone, but we need to account for daylight savings time
+  ## local time zone, but we need to account for daylight saving time
   ## changing by an hour the offset from CUT for part of the year.
 
 endfunction