From 55e6d4b9b567d2682cf3504f638892a0cb81c374 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 12 Feb 2014 21:27:31 +0200 Subject: [PATCH] Remove trailing space. --- docs/_data/glyphicons.yml | 2 +- grunt/bs-glyphicons-data-generator.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_data/glyphicons.yml b/docs/_data/glyphicons.yml index 80b4c9b086..fc4a8a58a8 100644 --- a/docs/_data/glyphicons.yml +++ b/docs/_data/glyphicons.yml @@ -1,4 +1,4 @@ -# This file is generated via Grunt task. **Do not edit directly.** +# This file is generated via Grunt task. **Do not edit directly.** # See the 'build-glyphicons-data' task in Gruntfile.js. - glyphicon-asterisk diff --git a/grunt/bs-glyphicons-data-generator.js b/grunt/bs-glyphicons-data-generator.js index 941684cc9d..16a0ca2ad6 100644 --- a/grunt/bs-glyphicons-data-generator.js +++ b/grunt/bs-glyphicons-data-generator.js @@ -15,7 +15,7 @@ module.exports = function generateGlyphiconsData() { // Use any line that starts with ".glyphicon-" and capture the class name var iconClassName = /^\.(glyphicon-[^\s]+)/; - var glyphiconsData = '# This file is generated via Grunt task. **Do not edit directly.** \n' + + var glyphiconsData = '# This file is generated via Grunt task. **Do not edit directly.**\n' + '# See the \'build-glyphicons-data\' task in Gruntfile.js.\n\n'; for (var i = 0, len = glpyhiconsLines.length; i < len; i++) { var match = glpyhiconsLines[i].match(iconClassName);