summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Lee <ray-github@evq.io>2023-01-14 09:49:54 -0800
committerGitHub <noreply@github.com>2023-01-14 09:49:54 -0800
commitd03a25a8539ab4a2c2d1719f7e7bfe9fd94bdfb6 (patch)
tree7256355ee5e646961ece89d31f197973453ccc40
parente33a87a24815d1c3e7ef02d88a72ef739aff83fe (diff)
Correct comment about use of function indirection
I should probably re-read my Common Lisp book.
-rwxr-xr-xtldr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tldr b/tldr
index 535367f..1982043 100755
--- a/tldr
+++ b/tldr
@@ -7,8 +7,8 @@
# And for me, at least, easier to reason about.
# In scripts "$@" often means 'all the arguments'. Below, it's also used
-# as a continuation, executing the first parameter ($1) of $@ as a command,
-# $2 onward as parameters, and wrapping it with other behaviors.
+# for function indirection, executing the first parameter ($1) of $@ as a
+# command, $2 onward as parameters, and wrapping it with other behaviors.
# Q: Why implement tldr in a plain POSIX shell script at all? It's nice to have
# a low-dependency way to see the pages, independent of local architecture. For