Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Add module designations to documented modules
Browse files Browse the repository at this point in the history
JSDoc is pretty terrible about organizing the code it documents, but
module designations help clean it up.

Signed-off-by: Zac Delventhal <[email protected]>
  • Loading branch information
Zac Delventhal committed Jun 27, 2018
1 parent 6beb6ca commit 7737826
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions processor/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module processor/context */
'use strict'

const {
Expand Down
1 change: 1 addition & 0 deletions processor/exceptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module processor/exceptions */
'use strict'

class _TransactionProcessorError extends Error {
Expand Down
1 change: 1 addition & 0 deletions processor/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module processor/handler */
'use strict'

/**
Expand Down
1 change: 1 addition & 0 deletions processor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module processor */
'use strict'

const {
Expand Down
1 change: 1 addition & 0 deletions protobuf/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module protobuf */
'use strict'

const protobuf = require('protobufjs')
Expand Down
1 change: 1 addition & 0 deletions signing/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module signing/core */
'use strict'

/**
Expand Down
1 change: 1 addition & 0 deletions signing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module signing */
'use strict'

const { NoSuchAlgorithmError, SigningError, ParseError } = require('./core')
Expand Down
1 change: 1 addition & 0 deletions signing/secp256k1.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* ------------------------------------------------------------------------------
*/

/** @module signing/secp256k1 */
'use strict'

const secp256k1 = require('secp256k1')
Expand Down

0 comments on commit 7737826

Please sign in to comment.