From 906378767eb12a0de66b94e3a99fdd413058beb2 Mon Sep 17 00:00:00 2001 From: Glenn Reyes Date: Fri, 25 Oct 2019 11:48:23 +0200 Subject: [PATCH] Add missing verb (#2483) --- content/docs/concurrent-mode-patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/concurrent-mode-patterns.md b/content/docs/concurrent-mode-patterns.md index 8f2b1d3f..7be9f5bf 100644 --- a/content/docs/concurrent-mode-patterns.md +++ b/content/docs/concurrent-mode-patterns.md @@ -360,7 +360,7 @@ At the very end, we have the **Complete** state. That's where we want to eventua But before our screen can be Complete, we might need to load some data or code. When we're on the next screen, but some parts of it are still loading, we call that a **Skeleton** state. -Finally, there two primary ways that lead us to the Skeleton state. We will illustrate the difference between them with a concrete example. +Finally, there are two primary ways that lead us to the Skeleton state. We will illustrate the difference between them with a concrete example. ### Default: Receded → Skeleton → Complete {#default-receded-skeleton-complete}