Browse Source

fix(changelog): fix spacing in breaking changes message

Marc Cornellà 3 years ago
parent
commit
3d51d63077
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/changelog.sh

+ 1 - 1
tools/changelog.sh

@@ -286,7 +286,7 @@ function display-release {
 
     local hash subject
     for hash message in ${(kv)breaking}; do
-      echo " - $(fmt:hash) $(fmt:scope) $(fmt:subject "${message}")"
+      echo " - $(fmt:hash) $(fmt:scope)$(fmt:subject "${message}")"
     done | sort
     echo
   }