Fix a minor grammar mistake

Subordinate clause is supposed to have the subject placed before the predicate.
This commit is contained in:
MapleCCC 2021-02-21 19:26:36 +08:00
parent c6ef982c31
commit b4316febfd

View File

@ -265,7 +265,7 @@ link.addEventListener('click', handleLinkClick)
A domain that a function operates on. 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 ```js
/* A pure function operating with primitives */ /* A pure function operating with primitives */