chore(gulpfile): fix link to clang formatting

Seems like the anchor tag wasn't updated here.

Closes #4410
This commit is contained in:
Jesús Rodríguez Rodríguez 2015-09-29 12:37:07 +02:00 committed by Misko Hevery
parent b87da8f47c
commit a31b2175dc
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ gulp.task('check-format', function() {
gulp.task('enforce-format', function() {
return doCheckFormat().on('warning', function(e) {
console.log("ERROR: You forgot to run clang-format on your change.");
console.log("See https://github.com/angular/angular/blob/master/DEVELOPER.md#formatting");
console.log("See https://github.com/angular/angular/blob/master/DEVELOPER.md#clang-format");
process.exit(1);
});
});