From f00ddcb3ecd7d9ea4841e1bf0b54d8bd3584760b Mon Sep 17 00:00:00 2001 From: Tyler Youngblood Date: Wed, 20 Apr 2022 15:30:54 -0400 Subject: [PATCH] Fix broken link to gulpjs docs on browsersync.io/docs/gulp#gulp-reload This fixes a broken "follow this documentation" link under the [Browser Reloading](https://browsersync.io/docs/gulp#gulp-reload) section of the Browsersync + Gulp.js documentation. --- _src/docs/gulp.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_src/docs/gulp.hbs b/_src/docs/gulp.hbs index f9dae1e..8b5e4e9 100644 --- a/_src/docs/gulp.hbs +++ b/_src/docs/gulp.hbs @@ -56,7 +56,7 @@ Sometimes you might just want to reload the page completely (for example, after you want the reload to happen *after* your tasks. This will be easier in gulp `4.x.x`, but for now you can do the following (make sure you `return` the stream from your tasks to ensure that `browserSync.reload()` is called at the correct time). -If you are using gulp `4.x.x` now, then you can [follow this documentation](https://github.com/gulpjs/gulp/blob/4.0/docs/recipes/minimal-browsersync-setup-with-gulp4.md). +If you are using gulp `4.x.x` now, then you can [follow this documentation](https://github.com/gulpjs/gulp/blob/master/docs/recipes/minimal-browsersync-setup-with-gulp4.md). {{/md}} {{ hl src="snippets/gulp/reload.js" }}