From 1b7482871cce4dbba91eef87b3d46bbe1ced0a37 Mon Sep 17 00:00:00 2001 From: friedkeenan Date: Sat, 25 Nov 2023 12:47:23 -0600 Subject: [PATCH] Fix grammar mistake in docs by using 'has' instead of 'have' --- docs/source/tutorials/protocol_matching/identifying.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/tutorials/protocol_matching/identifying.rst b/docs/source/tutorials/protocol_matching/identifying.rst index e4ec3f6..d364853 100644 --- a/docs/source/tutorials/protocol_matching/identifying.rst +++ b/docs/source/tutorials/protocol_matching/identifying.rst @@ -313,7 +313,7 @@ Here we define two new classes, ``ServerboundFelinePacket`` and ``ClientboundFel birth_month: pak.UInt8 birth_day: pak.UInt8 -Now every ``ServerboundFelinePacket`` and every ``ClientboundFelinePacket`` have a unique ID. So let's test out :meth:`.Packet.subclass_with_id`: +Now every ``ServerboundFelinePacket`` and every ``ClientboundFelinePacket`` has a unique ID. So let's test out :meth:`.Packet.subclass_with_id`: .. testcode::