fix: use correct quotes

This commit is contained in:
Andrew Welker
2024-03-27 15:33:19 -05:00
parent 99d0b2ea3a
commit 46b8e24968

View File

@@ -50,7 +50,7 @@ namespace PepperDash.Core
public Device(string key)
{
Key = key;
if (key.Contains('.')) Debug.LogMessage(LogEventLevel.Information, "WARNING: Device key should not include '.'", this);
if (key.Contains(".")) Debug.LogMessage(LogEventLevel.Information, "WARNING: Device key should not include '.'", this);
Name = "";
}