aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-07 19:43:01 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-07 19:43:01 +0100
commitdd9a41384c11896f41e744cc5f5e2af9b4b54948 (patch)
tree3df4595e8e8393f79ce5e2227f0af279ed36c689
parentadd support for signals in concurrently (diff)
downloadjoin-python-dd9a41384c11896f41e744cc5f5e2af9b4b54948.tar.gz
join-python-dd9a41384c11896f41e744cc5f5e2af9b4b54948.tar.bz2
join-python-dd9a41384c11896f41e744cc5f5e2af9b4b54948.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--info/join-python.texinfo4
1 files changed, 2 insertions, 2 deletions
diff --git a/info/join-python.texinfo b/info/join-python.texinfo
index 4902787..7e3a2d8 100644
--- a/info/join-python.texinfo
+++ b/info/join-python.texinfo
@@ -161,11 +161,11 @@ function returned.
>>> from join import *
>>>
>>> @@fragment
->>> def fragment(value):
+>>> def frag(value):
>>> return value ** 2
>>>
>>> def f(value):
->>> ((fragment_value,), _kwargs, rc) = join(fragment)
+>>> ((frag_value,), _kwargs, rc) = join(frag)
>>> return rc + fragment_value + value
>>>
>>> fragment(2)