diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2018-05-05 12:34:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-05 12:34:22 +0200 |
commit | b4f618e801ba0dcf5c59b5c3781eb5b2724133e0 (patch) | |
tree | c2663bf6413870d8cfc16c9678c73c30df473f69 | |
parent | a3007aa223b045385a2a4efcdbc0e87006164efa (diff) | |
parent | 48ba4eb7375ea2fd473a7aa06eab66f2252e92a6 (diff) | |
download | mitmproxy-b4f618e801ba0dcf5c59b5c3781eb5b2724133e0.tar.gz mitmproxy-b4f618e801ba0dcf5c59b5c3781eb5b2724133e0.tar.bz2 mitmproxy-b4f618e801ba0dcf5c59b5c3781eb5b2724133e0.zip |
Merge pull request #3098 from drzax/patch-1
Fix typo in addons-overview.md
-rw-r--r-- | docs/src/content/addons-overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/content/addons-overview.md b/docs/src/content/addons-overview.md index fea5feb2..bfde7f27 100644 --- a/docs/src/content/addons-overview.md +++ b/docs/src/content/addons-overview.md @@ -64,7 +64,7 @@ Here are a few things to note about the code above: finds into the addons mechanism. - Addons are just objects - in this case our addon is an instance of `Counter`. - The `request` method is an example of an **event**. Addons simply implement a - method for each event they wan to handle. Each event has a signature + method for each event they want to handle. Each event has a signature consisting of arguments that are passed to the method. For `request`, this is an instance of `mitmproxy.http.HTTPFlow`. - Finally, the `ctx` module is a holdall module that exposes a set of standard |