diff options
Diffstat (limited to 'docs/config/processors/index-page.js')
| -rw-r--r-- | docs/config/processors/index-page.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/config/processors/index-page.js b/docs/config/processors/index-page.js index 3ba1ac73..37a274ec 100644 --- a/docs/config/processors/index-page.js +++ b/docs/config/processors/index-page.js @@ -11,7 +11,7 @@ module.exports = { init: function(config) { deployment = config.deployment; if ( !deployment || !deployment.environments ) { - throw new Errro('No deployment environments found in the config.'); + throw new Error('No deployment environments found in the config.'); } }, process: function(docs) { @@ -39,4 +39,4 @@ module.exports = { docs.push(indexDoc); }); } -};
\ No newline at end of file +}; |
