From c48846727e83fc559ac3fdc41a55bad8c3145758 Mon Sep 17 00:00:00 2001 From: James Lu Date: Tue, 26 Jun 2018 22:02:09 -0700 Subject: [PATCH] pmodule-spec: fix link to protocol-modules.svg [skip ci] --- docs/technical/pmodule-spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/technical/pmodule-spec.md b/docs/technical/pmodule-spec.md index a418aaa..d75067b 100644 --- a/docs/technical/pmodule-spec.md +++ b/docs/technical/pmodule-spec.md @@ -4,7 +4,7 @@ Starting with PyLink 2.x, a *protocol module* is any module containing a class derived from `PyLinkNetworkCore` (e.g. `InspIRCdProtocol`), along with a global `Class` attribute set equal to it (e.g. `Class = InspIRCdProtocol`). These modules do everything from managing connections to providing plugins with an API to send and receive data. New protocol modules may be implemented based off any of the classes in the following inheritance tree, with each containing a different amount of abstraction. -![[Protocol module inheritence graph]](protocol-modules.png) +![[Protocol module inheritence graph]](protocol-modules.svg) ## Starting Steps