diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2018-03-31 21:14:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-31 21:14:06 +0200 |
commit | 7edf4ad6558731dfdf1d0cf46565bb2c0cbb8774 (patch) | |
tree | 557ad5f9818f343ffb49dcbcc91c7e691f4fc542 | |
parent | 3c52ed6ee1948a1c4b0fa064fe7313bdfadb8950 (diff) | |
parent | 673b58c79f8ff805c173b0efd1223a4c9b84ff40 (diff) | |
download | mitmproxy-7edf4ad6558731dfdf1d0cf46565bb2c0cbb8774.tar.gz mitmproxy-7edf4ad6558731dfdf1d0cf46565bb2c0cbb8774.tar.bz2 mitmproxy-7edf4ad6558731dfdf1d0cf46565bb2c0cbb8774.zip |
Merge pull request #3026 from ghillu/master
Update addons-overview.md
-rw-r--r-- | docs/src/content/addons-overview.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/content/addons-overview.md b/docs/src/content/addons-overview.md index 6aa1207e..fea5feb2 100644 --- a/docs/src/content/addons-overview.md +++ b/docs/src/content/addons-overview.md @@ -35,7 +35,7 @@ Here, for example, is a command that shows the API documentation for the mitmproxy's HTTP flow classes: {{< highlight bash >}} -pydoc mimtproxy.http +pydoc mitmproxy.http {{< /highlight >}} You will be referring to the mitmproxy API documentation frequently, so keep @@ -71,4 +71,4 @@ Here are a few things to note about the code above: objects that are commonly used in addons. We could pass a `ctx` object as the first parameter to every event, but we've found it neater to just expose it as an importable global. In this case, we're using the `ctx.log` object to do our - logging.
\ No newline at end of file + logging. |