X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/a22c56b35412f588ce058c85dfeb02d508b6c278..8adb3ef945a835657a977cb2761f93d3d8f75c3a:/unitproc/bktemp-vbm?ds=inline

diff --git a/unitproc/bktemp-vbm b/unitproc/bktemp-vbm
index c7a82b5..7e1687b 100644
--- a/unitproc/bktemp-vbm
+++ b/unitproc/bktemp-vbm
@@ -4,11 +4,11 @@
 vbm() {
     # Description: Prints verbose message ("vbm") to stderr if optionVerbose is set to "true".
     # Usage: vbm "DEBUG:verbose message here"
-    # Version 0.1.0
+    # Version 0.1.1
     # Input: arg1: string
     #        vars: optionVerbose
     # Output: stderr
-    # Depends: echo
+    # Depends: echo 8, date 8
 
     if [ "$optionVerbose" = "true" ]; then
 	functionTime=$(date --iso-8601=ns); # Save current time in nano seconds.
@@ -17,7 +17,7 @@ vbm() {
 
     # End function
     return 0; # Function finished.
-} # Verbose message display function.
+} # Displays message if optionVerbose true
 
 # Author: Steven Baltakatei Sandoval
 # License: GPLv3+