Skip to content

Commit 895fc47

Browse files
committed
minor comment cleanup.
1 parent bb7cdc8 commit 895fc47

File tree

12 files changed

+2
-26
lines changed

12 files changed

+2
-26
lines changed

examples/horrible_example.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// A playful example, using characters from "Dr. Horrible's Sing Along Blog".
3-
//
4-
// @module horrible_example.js
53
//----------------------------------------------------------------------------------------------------------------------
64

75
const Promise = require('bluebird');

examples/webpack/src/models.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// Models
3-
//
4-
// @module
53
//----------------------------------------------------------------------------------------------------------------------
64

75
import tdb from '../../../trivialdb';

lib/errors.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// Custom errors
3-
//
4-
// @module error.js
53
//----------------------------------------------------------------------------------------------------------------------
64

75
const { BaseError } = require('make-error');

lib/fslib.browser.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// fs operations for the browser
3-
//
4-
// @module
53
//----------------------------------------------------------------------------------------------------------------------
64

75
const Promise = require('bluebird');

lib/fslib.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
2-
// fslib.js - Brief description for fslib.js module.
3-
//
4-
// @module
2+
// fslib.js - A Library for handling file system operations.
53
//----------------------------------------------------------------------------------------------------------------------
64

75
const fs = require('fs');

lib/namespace.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// This is the main logic for namespaces. They are essentially just collections of `TDB` instances, plus some fancy
33
// rootPath logic.
4-
//
5-
// @module
64
//----------------------------------------------------------------------------------------------------------------------
75

86
const pathlib = require('./pathlib');

lib/pathlib.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// PathLib
3-
//
4-
// @module
53
//----------------------------------------------------------------------------------------------------------------------
64

75
const path = require('path');

lib/tdb.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
//----------------------------------------------------------------------------------------------------------------------
22
// This is the main database logic. It implements a thin wrapper around a plain object, as well as logic for persisting
33
// to disk.
4-
//
5-
// @module
64
//----------------------------------------------------------------------------------------------------------------------
75

86
const { EventEmitter } = require('events');

tests/namespace.spec.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// ---------------------------------------------------------------------------------------------------------------------
22
// Unit Tests for the namespace.spec.js module.
3-
//
4-
// @module
53
// ---------------------------------------------------------------------------------------------------------------------
64

75
const path = require('path');

tests/tdb.spec.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// ---------------------------------------------------------------------------------------------------------------------
22
// Unit Tests for the tdb.spec.js module.
3-
//
4-
// @module tdb.spec.js
53
// ---------------------------------------------------------------------------------------------------------------------
64

75
const fs = require('fs');

0 commit comments

Comments
 (0)