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

Fix language issues #68

Closed
wants to merge 13 commits into from
4 changes: 2 additions & 2 deletions include/mcpp/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class SocketConnection {

/**
* Takes in parameters supporting std::stringstream conversion and a string
* prefix and transforms them into format "prefix(arg1,arg2,arg3)\n" (e.g.
* "chat.post(test)\n") and sends command to the server.
* prefix and transforms them into format "prefix(arg1,arg2,arg3)" e.g.
* "chat.post(test)" and sends command to the server.
*
* @tparam Types
* @param prefix
Expand Down
4 changes: 2 additions & 2 deletions include/mcpp/mcpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class MinecraftConnection {
*
* ***IMPORTANT:***
* DO NOT USE FOR LARGE AREAS, IT WILL BE VERY SLOW
* USE getHeights() INSTEAD
* USE getHeights() instead
*
* Gets the y-value of the highest non-air block at the specified (x, z)
* coordinate.
Expand All @@ -143,7 +143,7 @@ class MinecraftConnection {
* @brief Provides a scaled option of the getHeight call to allow for
* considerable performance gains.
*
* \par USE THIS instead of getHeight in a for loop.
* \par USE this instead of getHeight in a for loop.
*
* @param loc1
* @param loc2
Expand Down