Browse Source

Updated Library Manager program

Samuel W. Flint 7 years ago
parent
commit
655fe3cee7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      library.org

+ 3 - 3
library.org

@@ -458,13 +458,13 @@ To complete this program, I include a help message, a small part of which is dis
 #+Name: help-message
 #+BEGIN_SRC sh
   if [[ $# -eq 0 ]] ; then
-      echo "library [ help | query | add | git | bulk-add | report | edit | loan | do-return | init ]"
+      echo "library [ help | query | add | git | bulk-add | report | edit | loan | return-book | init ]"
       exit
   fi
 
   function display-help {
       cat <<EOF
-  library [ help | query | add | git | bulk-add | report | edit | loan | do-return | init ]
+  library [ help | query | add | git | bulk-add | report | edit | loan | return-book | init ]
 
   help:       Display this help message.
   query:      Query Library Database.
@@ -474,7 +474,7 @@ To complete this program, I include a help message, a small part of which is dis
   report:     Run a report.
   edit:       Edit the value of a specified field in a specified record.
   loan:       Loan a book out.
-  do-return:  Process a book return
+  return-book:Process a book return
   init:       Initialize the database.
   EOF
   }