Skip to content

Commit

Permalink
Clean up comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Apr 13, 2021
1 parent bb506b1 commit eb0dbf8
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions lib/application.js
Expand Up @@ -10,18 +10,22 @@ var Router = require('./router')
, highlight = require('highlight.js')
, yaml = require('js-yaml')
, middleware = require('./middleware')
//, plugins = require('./plugins')
, fnpool = require('functionpool')
, utils = require('./utils')
, setPrototypeOf = require('setprototypeof')
, debug = require('debug')('kerouac');

var EventEmitter = require('events').EventEmitter;
var mixin = require('merge-descriptors');
var setPrototypeOf = require('setprototypeof');


/**
* Application prototype.
*/
var app = exports = module.exports = {};

/**
* Initialize the site.
*
* @private
*/
app.init = function() {
this.pages = [];
this.settings = {};
Expand All @@ -43,9 +47,9 @@ app.init = function() {
}

/**
* Initialize default configuration.
* Initialize site configuration.
*
* @api private
* @private
*/
app.defaultConfiguration = function() {
var self = this;
Expand Down

0 comments on commit eb0dbf8

Please sign in to comment.