Skip to content

Commit ac94576

Browse files
committed
docs: add missing trailing periods in README descriptions
Codebase-wide scan of all 5,485 stdlib package READMEs for blockquote taglines and h4-description sentences missing a trailing period. Applies the period to the five clean-drift cases: - `constants/complex128`: tagline (line 23) and h4 description (line 35). - `repl/presentation`: `Presentation.prototype.show()` description (the only such method whose description omitted the period; all sibling prototype-method descriptions in the same file end with a period). - `stats/base/dists/bernoulli/cdf`: `cdf.factory( p )` description. - `stats/base/dists/geometric/cdf`: `cdf.factory( p )` description. - `stats/base/dists/geometric/logcdf`: `logcdf.factory( p )` description. Other scan hits (`TODO` placeholders, mid-sentence lines that continue into a following code block or table) are intentional and left untouched.
1 parent 41606e2 commit ac94576

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)