Skip to content

Commit fe45222

Browse files
committed
Fix debug statement
1 parent 1b65a71 commit fe45222

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/repl/code-blocks/scripts

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/repl/code-blocks/scripts/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function main() {
9797
ast = parse( txt );
9898

9999
debug( 'Number of documented interfaces: %d', ast.length );
100-
debug( 'Generating abbreviated help for each documented interface...' );
100+
debug( 'Generating examples for each documented interface...' );
101101
for ( j = 0; j < ast.length; j++ ) {
102102
tmp = ast[ j ].signature.name;
103103
debug( 'Interface: %s', tmp );

0 commit comments

Comments
 (0)