From 645c71a9a940f23a41cacf258114204189c686e4 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 7 Apr 2026 13:57:58 -0400 Subject: [PATCH] Devices: Fix typo. --- src/apps/devices/Device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/devices/Device.cpp b/src/apps/devices/Device.cpp index 8cccaf19d4..516866e2f0 100644 --- a/src/apps/devices/Device.cpp +++ b/src/apps/devices/Device.cpp @@ -79,7 +79,7 @@ Device::GetName() const AttributeMapIterator it = fAttributeMap.find(B_TRANSLATE("Device name")); if (it != fAttributeMap.end()) return it->second; - return BString("unkown"); + return BString("unknown"); }