From d820287e8e266086ac968f16992da76493c0ff9c Mon Sep 17 00:00:00 2001 From: Donato Aguirre Date: Sun, 17 Jan 2021 11:36:47 -0300 Subject: [PATCH] Simplify shouldDisplayPagination --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 420237a..edfbc9a 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ const shouldPaginatize = a > 10 // Made up verbs are so much fun! /* Good */ const postCount = 5 const hasPagination = postCount > 10 -const shouldDisplayPagination = postCount > 10 // alternatively +const shouldPaginate = postCount > 10 // alternatively ``` ## Avoid contractions