Skip to content

Commit

Permalink
simplify GateIO description a bit, typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
w0lek committed Jun 10, 2024
1 parent adaa276 commit c92e52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpr/src/server/gateio.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace server {
* collects and encapsulates them into tasks (see @ref Task).
* The incoming tasks are extracted and handled by the top-level logic @ref TaskResolver in the main thread.
* Once the tasks are resolved by the @ref TaskResolver, they are returned to be sent back to the client app as a response.
* Extraction and puting @ref Task is taken from main thread inside @ref server::update.
* Moving @ref Task across threads happens in @ref server::update.
*
* @note
* - The GateIO instance should be created and managed from the main thread, while its internal processing
Expand Down Expand Up @@ -184,7 +184,7 @@ class GateIO
/**
* @brief Prints log messages for the GateIO.
*
* @note Must be called from main thread since it's invoke std::cout.
* @note Must be called from the main thread since it's invoke std::cout.
* Calling this method from other threads may result in unexpected behavior.
*/
void print_logs();
Expand Down

0 comments on commit c92e52c

Please sign in to comment.