Index: sources/canbus/FrameInterface.cpp =================================================================== diff -u -r3ad21b53b6b15cc0c88661cf17ba454fe0a302b1 -rfc329c788fe9453983072bee937ccbc95b4ed6e4 --- sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision 3ad21b53b6b15cc0c88661cf17ba454fe0a302b1) +++ sources/canbus/FrameInterface.cpp (.../FrameInterface.cpp) (revision fc329c788fe9453983072bee937ccbc95b4ed6e4) @@ -137,7 +137,7 @@ * \brief FrameInterface::transmitFrame * \details Prepares a frame to be transmitted * and emit signal didFrameTransmit with the frame as its argument - * \param vFrameId - Channel id of the CANBUS frame + * \param vFrameId - Channel id of the CANBus frame * \param vData - The Data this frame is going to carry * \note This frame is created by MessageBuilder * and it can be one of the frames of a message @@ -148,7 +148,7 @@ QCanBusFrame mFrame; mFrame.setFrameId(vCan_Id); if (vData.length() > Can::eLenCanFrame) { - LOG_DEBUG(QString("Payload can't be larger than %1 bytes").arg(Can::eLenCanFrame)); + LOG_DEBUG(QString("Payload cannot be larger than %1 bytes").arg(Can::eLenCanFrame)); return; } mFrame.setPayload(vData); @@ -228,7 +228,7 @@ /*! * \brief FrameInterface::onFrameReceive * \details This the slot connected to the CanInterface didFrameReceive signal. - * When a frame received over the CANBUS, + * When a frame received over the CANBus, * this slot will be called to check the channel if should be listened to. * and will emit didFrameReceive if should be handled and ignored otherwise. * \param vFrame - The frame has to be sent @@ -260,9 +260,9 @@ /*! * \brief FrameInterface::onFrameTransmit * \details This the slot connected to the MessageDispatcher didFrameTransmit signal. - * When a frame needs to be send to CANBUS, + * When a frame needs to be send to CANBus, * this slot will call transmitFrame method to do the job. - * \param vCan_Id - CANBUS Can Id target of the frame. + * \param vCan_Id - CANBus Can Id target of the frame. * \param vData - The data which this frame will carry. */ void FrameInterface::onFrameTransmit(Can_Id vCan_Id, const QByteArray &vData)