Commit 84fd1c84 authored by Andris Mednis's avatar Andris Mednis

Fix typos in libcaf_io

parent d0ff9a53
...@@ -27,11 +27,11 @@ ...@@ -27,11 +27,11 @@
#include "caf/io/basp/routing_table.hpp" #include "caf/io/basp/routing_table.hpp"
#include "caf/io/basp/version.hpp" #include "caf/io/basp/version.hpp"
/// @defgroup BASP Binary Actor Sytem Protocol /// @defgroup BASP Binary Actor System Protocol
/// ///
/// # Protocol Overview /// # Protocol Overview
/// ///
/// The "Binary Actor Sytem Protocol" (BASP) is **not** a network protocol. /// The "Binary Actor System Protocol" (BASP) is **not** a network protocol.
/// It is a specification for the "Remote Method Invocation" (RMI) interface /// It is a specification for the "Remote Method Invocation" (RMI) interface
/// used by distributed instances of CAF. The purpose of BASP is unify the /// used by distributed instances of CAF. The purpose of BASP is unify the
/// structure of RMI calls in order to simplify processing and implementation. /// structure of RMI calls in order to simplify processing and implementation.
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
/// ///
/// ![](basp_overview.png) /// ![](basp_overview.png)
/// ///
/// The figure above illustrates the phyiscal as well as the logical view /// The figure above illustrates the physical as well as the logical view
/// of a distributed CAF application. Note that the actors used for the /// of a distributed CAF application. Note that the actors used for the
/// BASP communication ("BASP Brokers") are not part of the logical system /// BASP communication ("BASP Brokers") are not part of the logical system
/// view and are in fact not visible to other actors. A BASP Broker creates /// view and are in fact not visible to other actors. A BASP Broker creates
......
...@@ -54,7 +54,7 @@ public: ...@@ -54,7 +54,7 @@ public:
// -- constructors, destructors, and assignment operators -------------------- // -- constructors, destructors, and assignment operators --------------------
/// Only the ::worker_hub has access to the construtor. /// Only the ::worker_hub has access to the constructor.
worker(hub_type& hub, message_queue& queue, proxy_registry& proxies); worker(hub_type& hub, message_queue& queue, proxy_registry& proxies);
~worker() override; ~worker() override;
......
...@@ -327,7 +327,7 @@ private: ...@@ -327,7 +327,7 @@ private:
std::thread thread_; std::thread thread_;
// keeps track of "singleton-like" brokers // keeps track of "singleton-like" brokers
std::map<atom_value, actor> named_brokers_; std::map<atom_value, actor> named_brokers_;
// actor offering asyncronous IO by managing this singleton instance // actor offering asynchronous IO by managing this singleton instance
middleman_actor manager_; middleman_actor manager_;
}; };
......
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
/// @warning Not thread safe. /// @warning Not thread safe.
void write(datagram_handle hdl, const void* buf, size_t num_bytes); void write(datagram_handle hdl, const void* buf, size_t num_bytes);
/// Returns the write buffer of this enpoint. /// Returns the write buffer of this endpoint.
/// @warning Must not be modified outside the IO multiplexers event loop /// @warning Must not be modified outside the IO multiplexers event loop
/// once the stream has been started. /// once the stream has been started.
write_buffer_type& wr_buf(datagram_handle hdl) { write_buffer_type& wr_buf(datagram_handle hdl) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment