remove @private from jsdoc
This commit is contained in:
parent
69b2b41692
commit
455f0fc0ac
|
@ -98,7 +98,6 @@ module.exports = function(loopback) {
|
||||||
* context, try the parent one
|
* context, try the parent one
|
||||||
* @param {String} name Name of the context property
|
* @param {String} name Name of the context property
|
||||||
* @returns {*} Value of the context property
|
* @returns {*} Value of the context property
|
||||||
* @private
|
|
||||||
*/
|
*/
|
||||||
ChainedContext.prototype.get = function(name) {
|
ChainedContext.prototype.get = function(name) {
|
||||||
var val = this.child && this.child.get(name);
|
var val = this.child && this.child.get(name);
|
||||||
|
|
Loading…
Reference in New Issue