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
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/constants/complex128/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# Constants

> 128-bit complex number mathematical constants
> 128-bit complex number mathematical constants.
Comment thread
kgryte marked this conversation as resolved.
<section class="usage">

Expand All @@ -32,7 +32,7 @@ var constants = require( '@stdlib/constants/complex128' );

#### constants

128-bit complex number mathematical constants
128-bit complex number mathematical constants.

```javascript
var c = constants;
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/presentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ function done() {

#### Presentation.prototype.show()

Shows a presentation slide (i.e., writes a rendered slide to the presentation [REPL][@stdlib/repl])
Shows a presentation slide (i.e., writes a rendered slide to the presentation [REPL][@stdlib/repl]).

<!-- eslint-disable stdlib/no-redeclare -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ y = cdf( 0.9, 1.5 );

#### cdf.factory( p )

Returns a function for evaluating the [cumulative distribution function][cdf] of a [Bernoulli][bernoulli-distribution] distribution with success probability `p`
Returns a function for evaluating the [cumulative distribution function][cdf] of a [Bernoulli][bernoulli-distribution] distribution with success probability `p`.

```javascript
var mycdf = cdf.factory( 0.5 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ y = cdf( 2.0, 1.5 );

#### cdf.factory( p )

Returns a function for evaluating the [cumulative distribution function][cdf] of a [geometric][geometric-distribution] distribution with success probability `p`
Returns a function for evaluating the [cumulative distribution function][cdf] of a [geometric][geometric-distribution] distribution with success probability `p`.

```javascript
var mycdf = cdf.factory( 0.5 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ y = logcdf( 2.0, 1.5 );

#### logcdf.factory( p )

Returns a function for evaluating the logarithm of the [cumulative distribution function][cdf] of a [geometric][geometric-distribution] distribution with success probability `p`
Returns a function for evaluating the logarithm of the [cumulative distribution function][cdf] of a [geometric][geometric-distribution] distribution with success probability `p`.

```javascript
var mylogcdf = logcdf.factory( 0.5 );
Expand Down
Loading