small doc update
authorIan Kelling <ian@iankelling.org>
Mon, 15 Aug 2016 02:33:09 +0000 (19:33 -0700)
committerIan Kelling <ian@iankelling.org>
Mon, 15 Aug 2016 02:33:09 +0000 (19:33 -0700)
README

diff --git a/README b/README
index aa8236a1a52b6fd9152ce3c5baccd6cb66a3bd39..2bdb934658b2cdf3a671ebad30f0e1ddabbc8761 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Functions to deal with errors in bash.
+Functions to deal with errors in bash
 
 bash-trace: print stack trace (best bash stack trace ever).
 errcatch: on error, do stack trace ane exit
@@ -7,13 +7,11 @@ errexit: exit and print stack trace
 
 the err* functions depend on bash-trace.
 
-
 For scripts without any nested function calls, this is usually sufficient:
 set -eE -o pipefail
 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
 
-
-Related: see my bash script template repo.
+Related: see my bash script template repo, at https://iankelling.org/git.
 
 Please email me if you have a patches, bugs, feedback, or republish this
 somewhere else: Ian Kelling <ian@iankelling.org>.