Annotated the code with some TODO-notes.
diff --git a/git-flow-hotfix b/git-flow-hotfix
index 2bceb5e..4333e30 100644
--- a/git-flow-hotfix
+++ b/git-flow-hotfix
@@ -201,6 +201,8 @@
 		git checkout $DEVELOP_BRANCH || \
 		  die "Could not check out $DEVELOP_BRANCH."
 
+		# TODO: Actually, accounting for 'git describe' pays, so we should
+		# ideally git merge --no-ff $tagname here, instead!
 		git merge --no-ff $BRANCH || \
 		  die "There were merge conflicts."
 		  # TODO: What do we do now?