From 7b83d3d82dd0e987bfce013aff0cb109c0e44913 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Sat, 25 Jul 2020 14:00:12 +0200 Subject: [PATCH] fix typo --- src/MFRC522.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MFRC522.cpp b/src/MFRC522.cpp index 4307dd8..a4f70e6 100644 --- a/src/MFRC522.cpp +++ b/src/MFRC522.cpp @@ -1281,7 +1281,7 @@ const __FlashStringHelper *MFRC522::GetStatusCodeName(MFRC522::StatusCode code / switch (code) { case STATUS_OK: return F("Success."); case STATUS_ERROR: return F("Error in communication."); - case STATUS_COLLISION: return F("Collission detected."); + case STATUS_COLLISION: return F("Collision detected."); case STATUS_TIMEOUT: return F("Timeout in communication."); case STATUS_NO_ROOM: return F("A buffer is not big enough."); case STATUS_INTERNAL_ERROR: return F("Internal error in the code. Should not happen.");