Skip to content

Commit

Permalink
📝 Update all guides urls
Browse files Browse the repository at this point in the history
  • Loading branch information
ImNotAVirus committed Aug 20, 2023
1 parent 623c996 commit 25c2a5d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/elven_gard/network/endpoint.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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](<ENDPOINT_DOCS_URL>).
refer to the [Endpoint documentation](https://hexdocs.pm/elvengard_network/endpoint.html).
"""

@doc "Called just before starting the ranch listener"
Expand Down
2 changes: 1 addition & 1 deletion lib/elven_gard/network/endpoint/protocol.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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_DOCS_URL>).
[Endpoint Protocol guide](https://hexdocs.pm/elvengard_network/protocol.html).
"""

alias ElvenGard.Network.Socket
Expand Down
3 changes: 2 additions & 1 deletion lib/elven_gard/network/network_codec.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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](<NETWORKCODEC_URL>).
and decoding, please refer to the
[NetworkCodec guide](https://hexdocs.pm/elvengard_network/network_codec.html).
"""

alias ElvenGard.Network.Socket
Expand Down
4 changes: 2 additions & 2 deletions lib/elven_gard/network/packet_handler.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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](<PACKETHANDLER_URL>).
For detailed usage information, please refer to the
[packet handler guide](https://hexdocs.pm/elvengard_network/packet_handler.html).
"""

alias ElvenGard.Network.Socket
Expand Down
2 changes: 1 addition & 1 deletion lib/elven_gard/network/packet_serializer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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](<PACKETSERIALIZER_URL>).
to the [Packet Serializer DSL guide](https://hexdocs.pm/elvengard_network/packet_definitions.html).
## Packet Macros
Expand Down

0 comments on commit 25c2a5d

Please sign in to comment.