Browse Source

Fix program name issue

Samuel W. Flint 4 years ago
parent
commit
5acd9f52ca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      library.org

+ 2 - 2
library.org

@@ -375,7 +375,7 @@ This handles git as needed, by first checking to see if the first argument is ~i
 #+BEGIN_SRC sh
   function do_edit {
       if [[ $# -lt 2 ]] ; then
-          echo "ledger edit id field [ value ]"
+          echo "library edit id field [ value ]"
           exit 1
       fi
       ID=$1
@@ -403,7 +403,7 @@ This handles git as needed, by first checking to see if the first argument is ~i
 
   function do_edit_exp {
       if [[ $# -lt 3 ]] ; then
-          echo "ledger edit-matching match-exp field value [ commit-message  ]"
+          echo "library edit-matching match-exp field value [ commit-message  ]"
           exit 1
       fi
       MATCHEXPRESSION=$1