Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] fix typos in network docs #3960

Merged
merged 2 commits into from
Feb 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/network/linkers.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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;

Expand Down