Fix docstring.
authorueno <ueno>
Tue, 15 Aug 2000 06:16:24 +0000 (06:16 +0000)
committerueno <ueno>
Tue, 15 Aug 2000 06:16:24 +0000 (06:16 +0000)
net-trans.el

index a3abf93..6a905bd 100644 (file)
     (|| net-transaction-compose-||)))
 
 (defun net-transaction-compose-&& (left right)
-  "Multiplicative operator of current transaction LEFT and RIGHT."
+  "Multiplicative combinator which composes LEFT and RIGHT operations."
   `(lambda (trans)
      (let ((next (funcall #',left trans)))
        (funcall #',right next))))
 
 (defun net-transaction-compose-|| (left right)
-  "Additive operator of current transaction LEFT and RIGHT."
+  "Additive combinator which composes LEFT and RIGHT operations."
   `(lambda (trans)
      (let (next error)
        (setq error