From b4316febfd590172de2e6789b398bf21d892b299 Mon Sep 17 00:00:00 2001 From: MapleCCC Date: Sun, 21 Feb 2021 19:26:36 +0800 Subject: [PATCH] Fix a minor grammar mistake Subordinate clause is supposed to have the subject placed before the predicate. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3ef7c9..b3874a8 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,7 @@ link.addEventListener('click', handleLinkClick) A domain that a function operates on. -A function is often an action on _something_. It is important to state what is its operable domain, or at least an expected data type. +A function is often an action on _something_. It is important to state what its operable domain is, or at least an expected data type. ```js /* A pure function operating with primitives */