Currently I'm trying to write a good commit comment for a code refactoring I've made. And I feel like I'm missing a word to sum up what I did instead of describing it.
Right now my description is: "Code refactor to improve decoupling inside the generator class."
But IMO, it's not really decoupling as it's only inside a class itself. It doesn't have any strong link to the code responsibility. It's more to improve testability of the class by having more smaller methods instead of few big one.
So that led me to a quite simple question:
What are the most common terms you use in your commit messages to describe a code refactoring ?
http://www.amazon.com/Refactoring-Improving-Design-Existing-Code/dp/0201485672
Is the defacto standard for basic refactoring vocabulary everywhere I've worked.