Skip to content

Commit cc0ab62

Browse files
authored
docs: add missing trailing periods in README descriptions
PR-URL: #11751 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 5a57084 commit cc0ab62

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/node_modules/@stdlib/constants/complex128/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# Constants
2222

23-
> 128-bit complex number mathematical constants
23+
> 128-bit complex number mathematical constants.
2424
2525
<section class="usage">
2626

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

3333
#### constants
3434

35-
128-bit complex number mathematical constants
35+
128-bit complex number mathematical constants.
3636

3737
```javascript
3838
var c = constants;

lib/node_modules/@stdlib/repl/presentation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ function done() {
912912

913913
#### Presentation.prototype.show()
914914

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

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

lib/node_modules/@stdlib/stats/base/dists/bernoulli/cdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ y = cdf( 0.9, 1.5 );
8787

8888
#### cdf.factory( p )
8989

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

9292
```javascript
9393
var mycdf = cdf.factory( 0.5 );

lib/node_modules/@stdlib/stats/base/dists/geometric/cdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ y = cdf( 2.0, 1.5 );
8787

8888
#### cdf.factory( p )
8989

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

9292
```javascript
9393
var mycdf = cdf.factory( 0.5 );

lib/node_modules/@stdlib/stats/base/dists/geometric/logcdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ y = logcdf( 2.0, 1.5 );
8787

8888
#### logcdf.factory( p )
8989

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

9292
```javascript
9393
var mylogcdf = logcdf.factory( 0.5 );

0 commit comments

Comments
 (0)