Skip to content

Commit fe6fccf

Browse files
committed
console.log
1 parent b28075d commit fe6fccf

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

tags/module.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var tnd = require("bit-docs-type-annotate").typeNameDescription;
66
* @module {bit-docs-process-tags/types/tag} bit-docs-js/tags/module
77
*
88
* @description Module that implements the [bit-docs-js/tag/module] tag.
9-
*
9+
*
1010
* @body
1111
*/
1212
module.exports = {
@@ -22,7 +22,7 @@ module.exports = {
2222

2323
var data = tnd(line);
2424
if(!data.name){
25-
print("LINE: \n" + line + "\n does not match @typedef [{TYPE}] NAME TITLE");
25+
console.log("LINE: \n" + line + "\n does not match @typedef [{TYPE}] NAME TITLE");
2626
}
2727
this.type = "module";
2828
this.title = data.description;

tags/this.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var getParent = require("bit-docs-process-tags/get-parent"),
4949
// this code is VERY similar to @return and should be shared
5050
// get type and description
5151
var printError = function(){
52-
print("LINE: \n" + line + "\n does not match @this {TYPE} DESCRIPTION");
52+
console.log("LINE: \n" + line + "\n does not match @this {TYPE} DESCRIPTION");
5353
};
5454

5555
// start processing

0 commit comments

Comments
 (0)