From 25c2a5d273f288b5dad847d6ad2b702609f46858 Mon Sep 17 00:00:00 2001 From: ImNotAVirus <17680522+ImNotAVirus@users.noreply.github.com> Date: Sun, 20 Aug 2023 23:58:49 +0200 Subject: [PATCH] :memo: Update all guides urls --- lib/elven_gard/network/endpoint.ex | 2 +- lib/elven_gard/network/endpoint/protocol.ex | 2 +- lib/elven_gard/network/network_codec.ex | 3 ++- lib/elven_gard/network/packet_handler.ex | 4 ++-- lib/elven_gard/network/packet_serializer.ex | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/elven_gard/network/endpoint.ex b/lib/elven_gard/network/endpoint.ex index a5e0262..0422236 100644 --- a/lib/elven_gard/network/endpoint.ex +++ b/lib/elven_gard/network/endpoint.ex @@ -7,7 +7,7 @@ defmodule ElvenGard.Network.Endpoint do handling network traffic efficiently. For in-depth information on how to use and configure network endpoints, please - refer to the [Endpoint documentation](). + refer to the [Endpoint documentation](https://hexdocs.pm/elvengard_network/endpoint.html). """ @doc "Called just before starting the ranch listener" diff --git a/lib/elven_gard/network/endpoint/protocol.ex b/lib/elven_gard/network/endpoint/protocol.ex index e44b42d..ce4b60e 100644 --- a/lib/elven_gard/network/endpoint/protocol.ex +++ b/lib/elven_gard/network/endpoint/protocol.ex @@ -11,7 +11,7 @@ defmodule ElvenGard.Network.Endpoint.Protocol do For detailed information on implementing and using network protocols with ElvenGard.Network, please refer to the - [Endpoint Protocol guide](). + [Endpoint Protocol guide](https://hexdocs.pm/elvengard_network/protocol.html). """ alias ElvenGard.Network.Socket diff --git a/lib/elven_gard/network/network_codec.ex b/lib/elven_gard/network/network_codec.ex index 1ec78b6..33f6642 100644 --- a/lib/elven_gard/network/network_codec.ex +++ b/lib/elven_gard/network/network_codec.ex @@ -7,7 +7,8 @@ defmodule ElvenGard.Network.NetworkCodec do binary data for transmission over the network. For more information on how to implement this behavior and use packet encoding - and decoding, please refer to the [NetworkCodec guide](). + and decoding, please refer to the + [NetworkCodec guide](https://hexdocs.pm/elvengard_network/network_codec.html). """ alias ElvenGard.Network.Socket diff --git a/lib/elven_gard/network/packet_handler.ex b/lib/elven_gard/network/packet_handler.ex index f1d36ef..e2e1aa4 100644 --- a/lib/elven_gard/network/packet_handler.ex +++ b/lib/elven_gard/network/packet_handler.ex @@ -5,8 +5,8 @@ defmodule ElvenGard.Network.PacketHandler do This module defines the callback `handle_packet/2`, which must be implemented by modules using this behavior to process incoming packets. - For detailed usage information, please refer to - [the packet handler guide](). + For detailed usage information, please refer to the + [packet handler guide](https://hexdocs.pm/elvengard_network/packet_handler.html). """ alias ElvenGard.Network.Socket diff --git a/lib/elven_gard/network/packet_serializer.ex b/lib/elven_gard/network/packet_serializer.ex index d951d56..1b2a675 100644 --- a/lib/elven_gard/network/packet_serializer.ex +++ b/lib/elven_gard/network/packet_serializer.ex @@ -7,7 +7,7 @@ defmodule ElvenGard.Network.PacketSerializer do structured packets with specified fields and decode binary data into packet structs. To learn more about the available macros and how to define packet serializers, refer - to the [Packet Serializer DSL guide](). + to the [Packet Serializer DSL guide](https://hexdocs.pm/elvengard_network/packet_definitions.html). ## Packet Macros