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
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
\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.
......@@ -205,7 +205,7 @@
/// Contains classes and functions used for network abstraction.
///
/// @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
///
......@@ -289,8 +289,8 @@
///
/// @section Atoms Atoms
///
/// Atoms are a nice way to add semantic informations to a message.
/// Assuming an actor wants to provide a "math sevice" for integers. It
/// Atoms are a nice way to add semantic information to a message.
/// Assuming an actor wants to provide a "math service" for integers. It
/// could provide operations such as addition, subtraction, etc.
/// 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.
......
......@@ -27,7 +27,7 @@
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>
struct parser_state {
/// Current position of the parser.
......
......@@ -114,7 +114,7 @@ struct valid_input {
// this function is called from typed_behavior<...>::set and its whole
// 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>
void static_check_typed_behavior_input() {
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