Quellcode durchsuchen

corrected minor typos in comments

Michael Honkoop vor 1 Woche
Ursprung
Commit
bfd0a617b5
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      localchecks/nextcloud-updates.sh

+ 2 - 2
localchecks/nextcloud-updates.sh

@@ -11,7 +11,7 @@
 # v1.4 CHANGES:
 # - added extra logic to deal with unresponsive or empty response from release-url
 # v1.5 CHANGES:
-# - added enhancement sugestion made by briand on checkmk forum to make the version-compare more granular
+# - added enhancement suggestion made by briand on checkmk forum to make the version-compare more granular
 # v1.6 CHANGES:
 # - Restructured and refined variables, also added additional comments per line of code
 # v1.7 CHANGES:
@@ -89,7 +89,7 @@ fi
 
 NCINSTALLED=$(sudo -u "$APACHEUSER" php "$BASEPATH"/occ status --output=json | jq -r '.versionstring // empty' | cut -d. -f1-"$VERSION_FIELDS")
 
-# Get latest avaiable (core) version information from release-url
+# Get latest avaialble (core) version information from release-url
 # In v29.x.x this has changed outputs <name-of-instance> <version>,
 NCRELEASEDATA=$(curl -fsS --connect-timeout 5 --max-time 10 "$RELEASEURL" 2>/dev/null)
 CURL_RC=$?