From 9b9051b9e636cde22d60a839e7f72b43400bcf8d Mon Sep 17 00:00:00 2001 From: Pedro Tacla Yamada Date: Fri, 7 Nov 2014 23:01:52 -0500 Subject: [PATCH] Fix typo in the documentation --- documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation.md b/documentation.md index 0279619..4ef3cf4 100644 --- a/documentation.md +++ b/documentation.md @@ -221,7 +221,7 @@ Processes can send data if the type implements the `Serializable` typeclass, which is done indirectly by implementing `Binary` and deriving `Typeable`. Implementations are already provided for primitives and some commonly used data structures. As programmers, we see the messages in nice high-level form -(e.g., `Int`, `String`, `Ping`, `Pong`, etc), however these data have to be +(e.g., `Int`, `String`, `Ping`, `Pong`, etc), however the data has to be encoded in order to be sent over a communications channel. Not all types are `Serializable`, for example concurrency primitives such as