Subscription: correct doxygen comment

This commit is contained in:
Matthias Grob 2020-07-30 15:32:48 +02:00 committed by Daniel Agar
parent e4fa7597f4
commit a6777e2650

View File

@ -115,13 +115,13 @@ public:
/**
* Update the struct
* @param data The uORB message struct we are updating.
* @param dst The uORB message struct we are updating.
*/
bool update(void *dst) { return updated() ? copy(dst) : false; }
/**
* Copy the struct
* @param data The uORB message struct we are updating.
* @param dst The uORB message struct we are updating.
*/
bool copy(void *dst) { return advertised() ? _node->copy(dst, _last_generation) : false; }