fix typos

old-commit-hash: ede75c9e9b849505f2ea91d00abe9073ad0b3cd4
This commit is contained in:
Robbe Derks
2023-06-01 21:37:10 +02:00
committed by GitHub
parent e7743b6acd
commit edc8384d6f
+2 -2
View File
@@ -13,11 +13,11 @@ Panda::Panda(std::string serial, uint32_t bus_offset) : bus_offset(bus_offset) {
// try USB first, then SPI
try {
handle = std::make_unique<PandaUsbHandle>(serial);
LOGW("conntected to %s over USB", serial.c_str());
LOGW("connected to %s over USB", serial.c_str());
} catch (std::exception &e) {
#ifndef __APPLE__
handle = std::make_unique<PandaSpiHandle>(serial);
LOGW("conntected to %s over SPI", serial.c_str());
LOGW("connected to %s over SPI", serial.c_str());
#endif
}