Intermediate Vocabulary #refactoring #clean-code #collocations

Refactoring Suggestions

5 exercises on the language of suggesting refactors in code review — the exact verbs and phrasal verbs developers use to recommend cleaner, clearer code.

Key patterns
  • extract a method / pull out a helper → split code out
  • simplify the logic / reduce duplication → DRY goals
  • tidy up → small cosmetic cleanups
  • rename for clarity → give a self-explanatory name
  • dead code → remove unused / unreachable code
0 / 5 completed
1 / 5
A reviewer sees a long function doing several things and wants to recommend pulling part of it into its own named function. What is the standard refactoring collocation?