diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-03-07 16:11:13 +0100 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-03-07 16:11:13 +0100 |
| commit | 44e3bda8a929806d74e1e95f2103e248190ed5a2 (patch) | |
| tree | 196ed828256efc044e2b8b1360aae09ccba03f82 | |
| parent | m doc (diff) | |
| download | join-python-44e3bda8a929806d74e1e95f2103e248190ed5a2.tar.gz join-python-44e3bda8a929806d74e1e95f2103e248190ed5a2.tar.bz2 join-python-44e3bda8a929806d74e1e95f2103e248190ed5a2.tar.xz | |
typo + m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rwxr-xr-x | src/join.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/join.py b/src/join.py index ae2c76f..55a62ce 100755 --- a/src/join.py +++ b/src/join.py @@ -30,7 +30,7 @@ class signal: ''' Constructor - @param f:(...)→¿R? The decorated function + @param f:(*..., **...)→¿R? The decorated function ''' self.f = f @@ -39,11 +39,11 @@ class signal: ''' Function invocation method - @param args:*... Positional arguments - @param kwargs:*... Named arguments - @return :join()→¿R? Object with an argumentless function, `join`, that - joins with the signal and returns the signals return. - This is an extension to join-calculus + @param args:*... Positional arguments + @param kwargs:**... Named arguments + @return :join()→¿R? Object with an argumentless function, `join`, that + joins with the signal and returns the signals return. + This is an extension to join-calculus ''' class signal_: def __init__(self, f): @@ -78,9 +78,9 @@ class fragment: ''' Function invocation method - @param args:*... Positional arguments - @param kwargs:*... Named arguments - @return :¿R? The value returned by the functon + @param args:*... Positional arguments + @param kwargs:**... Named arguments + @return :¿R? The value returned by the functon ''' rc = self.f(*args, **kwargs) self.condition.acquire() |
