diff --git a/common/lib/kernel/devices/ip_device.cpp b/common/lib/kernel/devices/ip_device.cpp index 12dfc84ca..d2d8d7dd0 100644 --- a/common/lib/kernel/devices/ip_device.cpp +++ b/common/lib/kernel/devices/ip_device.cpp @@ -31,7 +31,7 @@ size_t IpDevice::addr() const { size_t pos = name().find('.'); std::string addr_hex = name().substr(0, pos); - // convert from hex string to number + // Convert from hex-string to number std::stringstream ss; ss << std::hex << addr_hex; size_t addr = 0;