]> git.etc.gen.nz Git - mythtv-status.git/commitdiff
Fix some typos and spelling mistakes.
authorAndrew Ruthven <andrew@etc.gen.nz>
Wed, 26 Jul 2023 12:05:15 +0000 (00:05 +1200)
committerAndrew Ruthven <andrew@etc.gen.nz>
Wed, 26 Jul 2023 12:49:46 +0000 (00:49 +1200)
ChangeLog
THANKS
bin/mythtv-status
bin/mythtv-update-motd

index 18838b26705b8bab59bfbf08cd86fdb4afcb248e..91d00e05add5717f85a45163ade7b237a0970e1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,7 +7,7 @@
   Include my Makefile in the tarball, this allows using "make install" to install
   mythtv-status.
 
-  Make all shell scripts much clenaer according to shellcheck.
+  Make all shell scripts much cleaner according to shellcheck.
 
   Refresh URLs in FAQ, update libmythtv-perl package name.
 
@@ -45,7 +45,7 @@
 
 2019-01-11  Andrew Ruthven
   Add support for Fedora to mythtv-update-motd based on proposed file
-  from Göran Uddebor.
+  from Göran Uddebog.
 
   mythtv-update-status now uses UPDATE_MOTD and UPDATE_MOTD_ARGS
   to replace RUN and ARGS respectively. Both RUN and ARGS will be
 2013-10-28     Andrew Ruthven
         Guard against zero total disk space, this affected Werner Mahr.
 
-       Fix up processing of dates with oldstyle timestamps for in
+       Fix up processing of dates with old style timestamps for in
        progress recordings.
 
        Add support to specify the date we're running mythtv-status on
diff --git a/THANKS b/THANKS
index 11ae93ddb906fb6c75a3b4d422468b130d313f64..0ce4b75aadb42e36fd653dafcf9205a64d79f087 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -21,7 +21,7 @@ I'd like to thank the following people:
  - Steve Gunther   - Doing some home work on the OSD declutter changes.
  - Julian Gilbey   - Fixing up some errors in reporting the next scheduled
                      recording.
- - Göran Uddeborg  - Reporting the DateCalc behaviour chaneg and various other
+ - Göran Uddeborg  - Reporting the DateCalc behaviour change and various other
                      fixes.
  - Illés Sol       - UTF-8 character handling from MythTV::Program.
  - Eric Wilde      - Sending in a stack of his little improvements.
index 9f598de5fb0329b4dc2c0e049a559e8ffb0d958d..5bc94b6ea7a246998349a22ffbceaa39c225ea75 100755 (executable)
@@ -817,7 +817,7 @@ if (scalar(@oneliners) > 0) {
 
   # Put the one liners together, with leading dots to the colon.
   # We allow a hack for MS Outlook which normally recognises the
-  # oneliners block as a paragrap and wraps it.  If it sees "bullets"
+  # oneliners block as a paragraph and wraps it.  If it sees "bullets"
   # it believes it is a bulleted list and leaves it alone.
   my $oneliners = "";
   for $line (@oneliners) {
@@ -901,7 +901,7 @@ sub load_xml {
   # Parse the XML
   my $parser = XML::LibXML->new();
 
-  # Some XML data seems to have badness in it, including non-existant
+  # Some XML data seems to have badness in it, including non-existent
   # UTF-8 characters.  We'll try and recover.
   $parser->recover(1);
   $parser->recover_silently(1)
@@ -943,7 +943,7 @@ sub load_perl_api {
       if $verbose;
   } else {
 
-    # Surpress warnings from DBI.  I tried unsetting $^W but that is ignored.
+    # Suppress warnings from DBI.  I tried unsetting $^W but that is ignored.
     local($SIG{__WARN__}) = sub { if ($verbose) { print shift } };
     eval { $myth = new MythTV() };
 
@@ -1046,7 +1046,7 @@ sub process_conflicts {
     my $show;
     {
       # MythTV::Program currently has a slightly broken line with a numeric
-      # comparision.
+      # comparison.
       local($^W) = 0;
       $show = new MythTV::Program(@$row);
     }
@@ -1095,7 +1095,7 @@ sub process_auto_expire {
     my $show;
     {
       # MythTV::Program currently has a slightly broken line with a numeric
-      # comparision.
+      # comparison.
       local($^W) = 0;
       $show = new MythTV::Program(@$row);
     }
index ba9ebec3845ee648ac382476f9d069ef9448ac92..a507e7fb00699cbc546a1252d3e2cdd3c798e986 100755 (executable)
@@ -28,7 +28,7 @@ TEMPFILE=/run/motd.mythtv-status
 
 if [ -d /etc/update-motd.d ]
 then
-  # We want to generate file which only contains the MythTV Status
+  # We want to generate file which only contains the MythTV Status
   # as a snippet in /etc/update-motd.d will cat this file.
   #
   # Current (as of 2019-01-1) Debian and Ubuntu releases use this
@@ -56,12 +56,12 @@ else
     TEMPFILE=/etc/motd.mythtv-status
   fi
 
-  # Just incase someone has removed their motd file.
+  # Just in case someone has removed their motd file.
   [ -f $WORKFILE ] || touch $WORKFILE
   # Keep the original content around.
   [ -f $STUBFILE ] || cp $WORKFILE $STUBFILE
 
-  # If the tempfile is less than 15 minutes old, object, otherwise
+  # If the temp file is less than 15 minutes old, object, otherwise
   # we'll assume that something went wrong and remove it.
   if [ -f $TEMPFILE ]; then
     AGE=$(stat -c "%Z" $TEMPFILE);