aboutsummaryrefslogtreecommitdiffstats
path: root/doc-src/features
diff options
context:
space:
mode:
authorYouhei Sakurai <sakurai.youhei@gmail.com>2015-02-27 10:15:07 +0900
committerYouhei Sakurai <sakurai.youhei@gmail.com>2015-02-27 10:15:07 +0900
commit10f81e596bc0db37c62c0326ae6f7d3891f7756c (patch)
tree49bf825e4fea1fbd42d332442de76d293276db6e /doc-src/features
parent1d42c1b3c4f97a9e0d08bf55580b17ce144bd723 (diff)
downloadmitmproxy-10f81e596bc0db37c62c0326ae6f7d3891f7756c.tar.gz
mitmproxy-10f81e596bc0db37c62c0326ae6f7d3891f7756c.tar.bz2
mitmproxy-10f81e596bc0db37c62c0326ae6f7d3891f7756c.zip
Change from checking __call__ to using callable;
https://github.com/mitmproxy/mitmproxy/issues/319
Diffstat (limited to 'doc-src/features')
-rw-r--r--doc-src/features/responsestreaming.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc-src/features/responsestreaming.html b/doc-src/features/responsestreaming.html
index 59847c8f..20785269 100644
--- a/doc-src/features/responsestreaming.html
+++ b/doc-src/features/responsestreaming.html
@@ -40,7 +40,7 @@ Responses that should be tagged for streaming by setting their respective .strea
$!example("examples/stream.py")!$
-In addition, if the .stream attribute is set to callable(), .stream will work as a hook in chunk data processing.
+In addition, if the .stream attribute is callable, .stream will work as a hook in chunk data processing.
$!example("examples/stream_modify.py")!$