btford / write-good

Naive linter for English prose
MIT License
4.94k stars 188 forks source link

Catch compound verbs #41

Open RichardLitt opened 9 years ago

RichardLitt commented 9 years ago

I ran into an issue in the React docs that caused me to misparse a sentence: a compound verb.

...it only shallow copies log n objects...

There ought to be a way to catch ADJ+V combinations like this. A suggested change which I think is easier to read would be:

...it only makes a shallow copy of log n objects...

Panpog1 commented 8 years ago

How about:

..it only shallowly copies log n objects...

Is this acceptable? It is a ADV+V combination which is normally considered ok, but It seems to have a similar problem.

Or:

...it only shallow-copies log n objects...

RichardLitt commented 8 years ago

Both of those would be fine. I think the former is better, as it is more extensible.