In git there is a very handy feature that lets you fix your last commit, e.g. when you have forgotten something that does not justify a full commit.
It is very easy to do this in git:
git commit --amend
That way you don't have to specify a commit message or anything else, the commit is simply "appended" to your last full commit - or at least that is how I understand it.
Is there anything similar available in TFVC?