Cleanup common lib docs. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-28 23:15:12 -07:00
parent 593f6f9f86
commit 0ccaf76661
3 changed files with 5 additions and 5 deletions

View File

@@ -6,10 +6,10 @@ var _ = require('lodash');
/**
* Creates a hash object. If a `properties` object is provided, its own
* enumerable properties are assigned to the created object.
* enumerable properties are assigned to the created hash.
*
* @memberOf util
* @param {Object} [properties] The properties to assign to the object.
* @param {Object} [properties] The properties to assign to the hash.
* @returns {Object} Returns the new hash object.
*/
function Hash(properties) {