diff --git a/lib/node_modules/@stdlib/simulate/iter/bartlett-hann-pulse/lib/main.js b/lib/node_modules/@stdlib/simulate/iter/bartlett-hann-pulse/lib/main.js index b19cc9b1bb9b..04636f188a93 100644 --- a/lib/node_modules/@stdlib/simulate/iter/bartlett-hann-pulse/lib/main.js +++ b/lib/node_modules/@stdlib/simulate/iter/bartlett-hann-pulse/lib/main.js @@ -65,7 +65,7 @@ function bartlettHann( t, T, A ) { * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options -* @throws {RangeError} pulse duration must be less than the period +* @throws {RangeError} pulse duration must be less than or equal to the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator * diff --git a/lib/node_modules/@stdlib/simulate/iter/bartlett-pulse/lib/main.js b/lib/node_modules/@stdlib/simulate/iter/bartlett-pulse/lib/main.js index 853d8cf1cbb7..0215286f0ede 100644 --- a/lib/node_modules/@stdlib/simulate/iter/bartlett-pulse/lib/main.js +++ b/lib/node_modules/@stdlib/simulate/iter/bartlett-pulse/lib/main.js @@ -40,7 +40,7 @@ var validate = require( './validate.js' ); * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options -* @throws {RangeError} pulse duration must be less than the period +* @throws {RangeError} pulse duration must be less than or equal to the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator * diff --git a/lib/node_modules/@stdlib/simulate/iter/flat-top-pulse/lib/main.js b/lib/node_modules/@stdlib/simulate/iter/flat-top-pulse/lib/main.js index 6db2831d721f..81d52c6be996 100644 --- a/lib/node_modules/@stdlib/simulate/iter/flat-top-pulse/lib/main.js +++ b/lib/node_modules/@stdlib/simulate/iter/flat-top-pulse/lib/main.js @@ -66,7 +66,7 @@ function flatTop( t, A, tau ) { * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options -* @throws {RangeError} pulse duration must be less than the period +* @throws {RangeError} pulse duration must be less than or equal to the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator * diff --git a/lib/node_modules/@stdlib/simulate/iter/hann-pulse/lib/main.js b/lib/node_modules/@stdlib/simulate/iter/hann-pulse/lib/main.js index 27c4538686b6..08497df132ee 100644 --- a/lib/node_modules/@stdlib/simulate/iter/hann-pulse/lib/main.js +++ b/lib/node_modules/@stdlib/simulate/iter/hann-pulse/lib/main.js @@ -40,7 +40,7 @@ var validate = require( './validate.js' ); * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options -* @throws {RangeError} pulse duration must be less than the period +* @throws {RangeError} pulse duration must be less than or equal to the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator * diff --git a/lib/node_modules/@stdlib/simulate/iter/lanczos-pulse/lib/main.js b/lib/node_modules/@stdlib/simulate/iter/lanczos-pulse/lib/main.js index e1d1a5dd53f8..88932d589602 100644 --- a/lib/node_modules/@stdlib/simulate/iter/lanczos-pulse/lib/main.js +++ b/lib/node_modules/@stdlib/simulate/iter/lanczos-pulse/lib/main.js @@ -40,7 +40,7 @@ var validate = require( './validate.js' ); * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options -* @throws {RangeError} pulse duration must be less than the period +* @throws {RangeError} pulse duration must be less than or equal to the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator *