Revision b69a5148aaf8f165198d729b0298f95110f54d9a authored by Dario Piotrowicz on 01 January 2022, 13:11:47 UTC, committed by Andrew Scott on 06 January 2022, 00:22:43 UTC
In angular.io links to the AnimationBuilder.build method are broken and do not
point to the api docs page, fix such broken links

Also apply minor wording and related improvements

PR Close #44594
1 parent 2d14724
Raw File
prepare-commit-msg
#!/bin/sh
. "$(dirname $0)/_/husky.sh"

set +e

yarn -s ng-dev commit-message restore-commit-message-draft $1 $2 2>/dev/null
if [ $? -ne 0 ]; then
  echo "WARNING: failed to attempt to restore commit message draft (ng-dev commit-message restore-commit-message-draft)"
fi

exit 0;
back to top