From 779cab95262a606d3e05cf2dc57487e234af9e39 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 14 Apr 2016 19:46:58 -0700 Subject: Fix incorrect example under umeth. * txr.1: Functions bound to variables must be invoked using DWIM brackets or call function. --- txr.1 | 4 ++-- 1 file 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 -- cgit v1.2.3