Grammar Intermediate #dangling-modifier #clarity #technical-writing

Dangling Modifiers

6 exercises — identify and fix dangling modifiers in real IT documentation contexts: code review comments, postmortem reports, API documentation, and deployment runbooks.

What is a dangling modifier?
  • A dangling modifier is a phrase that implies a subject but the main clause has a different (or illogical) subject
  • "Having deployed the patch, the server was restarted." — the server cannot deploy a patch
  • Fix rule: make the implied actor the subject of the main clause
  • Fixed: "Having deployed the patch, the team restarted the server."
  • Alternative fix: convert the phrase to a full subordinate clause — "After the team deployed the patch, the server was restarted."
0 / 6 completed
1 / 6
A developer writes in a code review comment:
"Having reviewed the pull request, the bug was found in the authentication module."
Which revision correctly fixes the dangling modifier?