Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Fréchet distribution expected value.

Check warning on line 22 in lib/node_modules/@stdlib/stats/base/dists/frechet/mean/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "échet"
*
* @module @stdlib/stats/base/dists/frechet/mean
*
Expand All @@ -35,9 +35,9 @@

// MODULES //

var mean = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = mean;
module.exports = main;
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Fréchet distribution median.

Check warning on line 22 in lib/node_modules/@stdlib/stats/base/dists/frechet/median/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "échet"
*
* @module @stdlib/stats/base/dists/frechet/median
*
Expand All @@ -35,9 +35,9 @@

// MODULES //

var median = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = median;
module.exports = main;
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Fréchet distribution mode.

Check warning on line 22 in lib/node_modules/@stdlib/stats/base/dists/frechet/mode/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "échet"
*
* @module @stdlib/stats/base/dists/frechet/mode
*
Expand All @@ -35,9 +35,9 @@

// MODULES //

var mode = require( './main.js' );
var main = require( './main.js' );


// EXPORTS //

module.exports = mode;
module.exports = main;