summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-14 19:46:58 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-14 19:46:58 -0700
commit779cab95262a606d3e05cf2dc57487e234af9e39 (patch)
treece049b33e37d5657069991e8b131b6206b6871a3
parenta6ee9c3ac657e479d338df1b298704ba09c7066e (diff)
downloadtxr-779cab95262a606d3e05cf2dc57487e234af9e39.tar.gz
txr-779cab95262a606d3e05cf2dc57487e234af9e39.tar.bz2
txr-779cab95262a606d3e05cf2dc57487e234af9e39.zip
Fix incorrect example under umeth.
* txr.1: Functions bound to variables must be invoked using DWIM brackets or call function.
-rw-r--r--txr.14
1 files changed, 2 insertions, 2 deletions
diff --git a/txr.1 b/txr.1
index b9476e91..bd0e5b46 100644
--- a/txr.1
+++ b/txr.1
@@ -20011,8 +20011,8 @@ symbol.
;; different types. Both have a method called bark.
(let ((bark-fun (umeth bark)))
- (bark-fun dog) ;; same effect as dog.(bark)
- (bark-fun seal)) ;; same effect as seal.(bark)
+ [bark-fun dog] ;; same effect as dog.(bark)
+ [bark-fun seal]) ;; same effect as seal.(bark)
.cble
The