Skip to content

Commit 7f614e0

Browse files
committed
fix minor issues format specs
1 parent cfb5843 commit 7f614e0

4 files changed

+5
-5
lines changed

doc/specs/stdlib_stats.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ median(array) = mean( array_sorted( floor( (n + 1) / 2.):floor( (n + 1) / 2.) +
181181
```
182182

183183
The current implementation relies on a selection algorithm applied on a copy of
184-
the whole array, using the subroutine `` [[stdlib_selection(module):select(interface)]] ``
185-
provided by the `` [[stdlib_selection(module)]] `` module.
184+
the whole array, using the subroutine [[stdlib_selection(module):select(interface)]]
185+
provided by the [[stdlib_selection(module)]] module.
186186

187187
### Syntax
188188

doc/specs/stdlib_stats_distribution_exponential.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The algorithm used for generating exponential random variates is fundamentally l
2929

3030
### Syntax
3131

32-
`result = ` [[stdlib_stats_distribution_exponential(module):rvs_exp(interface)]] `([lambda] ` [[, array_size]] `)`
32+
`result = ` [[stdlib_stats_distribution_exponential(module):rvs_exp(interface)]] `([lambda] [[, array_size]])`
3333

3434
### Class
3535

doc/specs/stdlib_stats_distribution_normal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The algorithm used for generating exponential random variates is fundamentally l
2828

2929
### Syntax
3030

31-
`result = ` [[stdlib_stats_distribution_normal(module):rvs_normal(interface)]] `([loc, scale] ` [[, array_size]] `)`
31+
`result = ` [[stdlib_stats_distribution_normal(module):rvs_normal(interface)]] `([loc, scale] [[, array_size]])`
3232

3333
### Class
3434

doc/specs/stdlib_stats_distribution_uniform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Note: the algorithm used for generating uniform random variates is fundamentally
6262

6363
### Syntax
6464

65-
`result = ` [[stdlib_stats_distribution_uniform(module):rvs_uniform(interface)]] `(` [[loc,] scale] ` [[[,array_size]] `])`
65+
`result = ` [[stdlib_stats_distribution_uniform(module):rvs_uniform(interface)]] `([[loc,] scale] [[[,array_size]]])`
6666

6767
### Class
6868

0 commit comments

Comments
 (0)