From 4e76c307889d0c4358c7442fe8d302b83569afef Mon Sep 17 00:00:00 2001 From: SopaXorzTaker Date: Wed, 17 Jun 2015 08:39:18 +0300 Subject: [PATCH] Update Utils.php Correct a typo --- src/pocketmine/utils/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/utils/Utils.php b/src/pocketmine/utils/Utils.php index 91cf1ca37..8caa74358 100644 --- a/src/pocketmine/utils/Utils.php +++ b/src/pocketmine/utils/Utils.php @@ -59,7 +59,7 @@ class Utils{ public static function toUUID($data, $version = 2, $fixed = "8"){ if(strlen($data) !== 16){ - throw new \InvalidArgumentException("Data bust be 16 bytes"); + throw new \InvalidArgumentException("Data must be 16 bytes"); } $hex = bin2hex($data);