Skip to content

Commit 9856e3c

Browse files
committed
improve docs
1 parent 7a7187a commit 9856e3c

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/core/Common.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@ module.exports = Common;
528528

529529
/**
530530
* Chains a function to excute before the original function on the given `path` relative to `base`.
531+
* See also docs for `Common.chain`.
531532
* @method chainPathBefore
532533
* @param {} base The base object
533534
* @param {string} path The path relative to `base`
@@ -543,6 +544,7 @@ module.exports = Common;
543544

544545
/**
545546
* Chains a function to excute after the original function on the given `path` relative to `base`.
547+
* See also docs for `Common.chain`.
546548
* @method chainPathAfter
547549
* @param {} base The base object
548550
* @param {string} path The path relative to `base`

src/core/Matter.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ var Common = require('./Common');
5959

6060
/**
6161
* Chains a function to excute before the original function on the given `path` relative to `Matter`.
62+
* See also docs for `Common.chain`.
6263
* @method before
6364
* @param {string} path The path relative to `Matter`
6465
* @param {function} func The function to chain before the original
@@ -71,6 +72,7 @@ var Common = require('./Common');
7172

7273
/**
7374
* Chains a function to excute after the original function on the given `path` relative to `Matter`.
75+
* See also docs for `Common.chain`.
7476
* @method after
7577
* @param {string} path The path relative to `Matter`
7678
* @param {function} func The function to chain after the original

0 commit comments

Comments
 (0)