Commit b8bea6dd authored by Andris Mednis's avatar Andris Mednis

Fix spelling: information

parent ad110ffa
...@@ -60,5 +60,5 @@ behavior that is incredibly hard to find and debug. However, sharing ...@@ -60,5 +60,5 @@ behavior that is incredibly hard to find and debug. However, sharing
and its lifetime is guaranteed to outlive all actors. The simplest way to meet and its lifetime is guaranteed to outlive all actors. The simplest way to meet
the lifetime guarantee is by storing the data in smart pointers such as the lifetime guarantee is by storing the data in smart pointers such as
\lstinline^std::shared_ptr^. Nevertheless, the recommended way of sharing \lstinline^std::shared_ptr^. Nevertheless, the recommended way of sharing
informations is message passing. Sending the same message to multiple actors information is message passing. Sending the same message to multiple actors
does not result in copying the data several times. does not result in copying the data several times.
...@@ -205,7 +205,7 @@ ...@@ -205,7 +205,7 @@
/// Contains classes and functions used for network abstraction. /// Contains classes and functions used for network abstraction.
/// ///
/// @namespace caf::io::basp /// @namespace caf::io::basp
/// Contains all classes and functions for the Binary Actor Sytem Protocol. /// Contains all classes and functions for the Binary Actor System Protocol.
/// ///
/// @defgroup MessageHandling Message Handling /// @defgroup MessageHandling Message Handling
/// ///
...@@ -289,8 +289,8 @@ ...@@ -289,8 +289,8 @@
/// ///
/// @section Atoms Atoms /// @section Atoms Atoms
/// ///
/// Atoms are a nice way to add semantic informations to a message. /// Atoms are a nice way to add semantic information to a message.
/// Assuming an actor wants to provide a "math sevice" for integers. It /// Assuming an actor wants to provide a "math service" for integers. It
/// could provide operations such as addition, subtraction, etc. /// could provide operations such as addition, subtraction, etc.
/// This operations all have two operands. Thus, the actor does not know /// This operations all have two operands. Thus, the actor does not know
/// what operation the sender of a message wanted by receiving just two integers. /// what operation the sender of a message wanted by receiving just two integers.
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
namespace caf { namespace caf {
/// Stores all informations necessary for implementing an FSM-based parser. /// Stores all information necessary for implementing an FSM-based parser.
template <class Iterator, class Sentinel> template <class Iterator, class Sentinel>
struct parser_state { struct parser_state {
/// Current position of the parser. /// Current position of the parser.
......
...@@ -114,7 +114,7 @@ struct valid_input { ...@@ -114,7 +114,7 @@ struct valid_input {
// this function is called from typed_behavior<...>::set and its whole // this function is called from typed_behavior<...>::set and its whole
// purpose is to give users a nicer error message on a type mismatch // purpose is to give users a nicer error message on a type mismatch
// (this function only has the type informations needed to understand the error) // (this function only has the type information needed to understand the error)
template <class SignatureList, class InputList> template <class SignatureList, class InputList>
void static_check_typed_behavior_input() { void static_check_typed_behavior_input() {
constexpr bool is_valid = valid_input<SignatureList, InputList>::value; constexpr bool is_valid = valid_input<SignatureList, InputList>::value;
......
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