From a1f5257f643d4dac6fc26c4993cc11170000a548 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Thu, 6 Oct 2022 14:16:37 +0200 Subject: [PATCH] s/set_/get_/ in doc --- include/simgrid/s4u/Comm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/simgrid/s4u/Comm.hpp b/include/simgrid/s4u/Comm.hpp index 84b0cbbb3f..e9f8acc5d1 100644 --- a/include/simgrid/s4u/Comm.hpp +++ b/include/simgrid/s4u/Comm.hpp @@ -128,7 +128,7 @@ public: CommPtr set_dst_data(void** buff, size_t size); /** Retrieve where the data will be copied on the receiver side */ void* get_dst_data() const { return dst_buff_; } - /** Retrieve the size of the received data. Not to be mixed with @ref Activity::set_remaining() */ + /** Retrieve the size of the received data. Not to be mixed with @ref Activity::get_remaining() */ size_t get_dst_data_size() const { return dst_buff_size_; } /* Common functions */ -- 2.20.1