From: Martin Quinson Date: Wed, 1 Jun 2016 13:16:19 +0000 (+0200) Subject: doxygen fixups X-Git-Tag: v3_14~1063 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/edf6d3b977f403bf045796b7c25bc56fe6770f2b doxygen fixups --- diff --git a/include/simgrid/s4u/comm.hpp b/include/simgrid/s4u/comm.hpp index 471543520e..297779873e 100644 --- a/include/simgrid/s4u/comm.hpp +++ b/include/simgrid/s4u/comm.hpp @@ -25,13 +25,13 @@ public: ~Comm() override; public: - /** Creates (but don't start) an async send to the mailbox #dest */ + /** Creates (but don't start) an async send to the mailbox @p dest */ static Comm &send_init(Mailbox &dest); - /** Creates and start an async send to the mailbox #dest */ + /** Creates and start an async send to the mailbox @p dest */ static Comm &send_async(Mailbox &dest, void *data, int simulatedByteAmount); - /** Creates (but don't start) an async recv onto the mailbox #from */ + /** Creates (but don't start) an async recv onto the mailbox @p from */ static Comm &recv_init(Mailbox &from); - /** Creates and start an async recv to the mailbox #from */ + /** Creates and start an async recv to the mailbox @p from */ static Comm &recv_async(Mailbox &from, void **data); void start() override;