From 59296a7780aed30122480d999316a6ff9f8b5251 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Sun, 14 Feb 2021 16:08:52 -0600 Subject: [PATCH] [docs] fix typos in network docs --- src/network/linkers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/network/linkers.h b/src/network/linkers.h index 8ddbb902a152..22b33148530b 100644 --- a/src/network/linkers.h +++ b/src/network/linkers.h @@ -30,8 +30,8 @@ namespace LightGBM { /*! -* \brief A network basic communication warpper. -* Will warp low level communication methods, e.g. mpi, socket and so on. +* \brief A network basic communication wrapper. +* Will wrap low level communication methods, e.g. mpi, socket and so on. * This class will wrap all linkers to other machines if needs */ class Linkers { @@ -52,7 +52,7 @@ class Linkers { * \brief Recv data, blocking * \param rank Which rank will send data to local machine * \param data Pointer of receive data - * \param len Recv size, will block until recive len size of data + * \param len Recv size, will block until receive len size of data */ inline void Recv(int rank, char* data, int len) const;