From 180c898138d898979910da48645e4c49d794e6fc Mon Sep 17 00:00:00 2001 From: Dragonus333 Date: Thu, 12 Jul 2018 14:49:40 +0100 Subject: [PATCH] Fixed typo "A fist sized rock, suitable fro bludgeoning. into "A fist-sized rock, suitable for bludgeoning." --- sources/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/items.py b/sources/items.py index 8287dbf..e680786 100644 --- a/sources/items.py +++ b/sources/items.py @@ -16,7 +16,7 @@ def __str__(self): class Rock(Weapon): def __init__(self): self.name = "Rock" - self.description = "A fist sized rock, suitable fro bludgeoning." + self.description = "A fist-sized rock, suitable for bludgeoning." self.damage = 5 self.value = 1