From a112017a5bc6fb1952096c23e6e8a9488ea7a28d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwendal=20Roue=CC=81?= Date: Thu, 1 Oct 2020 20:39:14 +0200 Subject: [PATCH] Documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ecba246..c9f2986 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ CombineTraits solves a problem with the [Combine] framework: publishers do not t When we are lucky, we can rely on the context, or the documentation, in order to lift doubts. For example, publishers of a network request are assumed to publish one value, or the eventual network error. -But sometimes we are clueless, or publishers does not honor their implicit contract, due to a misunderstanding, or a bug in their implementation. In the end, we write code that is more complex than necessary, or we neglect to deal with edge cases such as a completion without any value, or several published values. +But sometimes we are clueless, or publishers do not honor their implicit contract, due to a misunderstanding, or a bug in their implementation. In the end, we write code that is more complex than necessary, or we neglect to deal with edge cases such as a completion without any value, or several published values. **The compiler does not help us writing code that is guaranteed to be correct.**