fix(u/bktemp-checkFlt):Update copypasta comments (int -> flt)
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 2 Nov 2021 22:41:09 +0000 (22:41 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 2 Nov 2021 22:41:09 +0000 (22:41 +0000)
unitproc/bktemp-checkFlt

index 530ff0e48e82de964dd63c47e157a679e3311bf1..affc94f2884b265947cc518a507ac3f7d176aa6e 100644 (file)
@@ -8,12 +8,12 @@ die() { yell "$*"; exit 111; } # same as yell() but non-zero exit status
 try() { "$@" || die "cannot $*"; } # runs args as command, reports args if command fails
 checkFlt() {
     # Desc: Checks if arg is a float
-    # Usage: checkInt arg
+    # Usage: checkFlt arg
     # Input: arg: float
     # Output: - return code 0 (if arg is float)
     #         - return code 1 (if arg is not float)
-    # Example: if ! checkInt $arg; then echo "not flt"; fi;
-    # Version: 0.0.1
+    # Example: if ! checkFlt $arg; then echo "not flt"; fi;
+    # Version: 0.0.2
     # Depends: yell(), die(), bash 5.0.3
     # Ref/Attrib: JDB https://stackoverflow.com/a/12643073 float regex
     local returnState
@@ -36,7 +36,7 @@ checkFlt() {
     else
        return 1;
     fi;
-} # Checks if arg is integer
+} # Checks if arg is float
 
 #===END Declare local script functions===
 #==END Define script parameters==