Unverified Commit b9e3c1db authored by Dominik Charousset's avatar Dominik Charousset Committed by GitHub

Merge pull request #1455

Fix typos
parents 5eb49e3e e1b6bb61
...@@ -674,9 +674,9 @@ is based on [Keep a Changelog](https://keepachangelog.com). ...@@ -674,9 +674,9 @@ is based on [Keep a Changelog](https://keepachangelog.com).
already did. already did.
- The `typed_actor_view` decorator lacked several member functions such as - The `typed_actor_view` decorator lacked several member functions such as
`link_to`, `send_exit`, etc. These are now available. `link_to`, `send_exit`, etc. These are now available.
- Constructing a `typed_actor` handle from a pointer view failed du to a missing - Constructing a `typed_actor` handle from a pointer view failed due to a
constructor overload. This (explicit) overload now exists and the conversion missing constructor overload. This (explicit) overload now exists and the
should work as expected. conversion should work as expected.
- Sending floating points to remote actors changed `infinity` and `NaN` to - Sending floating points to remote actors changed `infinity` and `NaN` to
garbage values (#1107). The fixed packing / unpacking routines for IEEE 754 garbage values (#1107). The fixed packing / unpacking routines for IEEE 754
values keep these non-numeric values intact now. It is worth mentioning that values keep these non-numeric values intact now. It is worth mentioning that
......
...@@ -34,8 +34,8 @@ public: ...@@ -34,8 +34,8 @@ public:
/// flushed before closing the socket. /// flushed before closing the socket.
virtual void shutdown() = 0; virtual void shutdown() = 0;
/// Shuts down any connection or session du to an error. Any pending data gets /// Shuts down any connection or session due to an error. Any pending data
/// flushed before closing the socket. Protocols with a dedicated closing /// gets flushed before closing the socket. Protocols with a dedicated closing
/// handshake such as WebSocket may send the close reason to the peer. /// handshake such as WebSocket may send the close reason to the peer.
virtual void shutdown(const error& reason); virtual void shutdown(const error& reason);
}; };
......
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