From a31b2175dcf913153aaff48ba7f9d51f85295210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Rodr=C3=ADguez=20Rodr=C3=ADguez?= Date: Tue, 29 Sep 2015 12:37:07 +0200 Subject: [PATCH] chore(gulpfile): fix link to clang formatting Seems like the anchor tag wasn't updated here. Closes #4410 --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 58afdf8afa..5368d54ef7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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); }); });