Skip to content

Commit d48dd90

Browse files
authored
docs: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 9b92935 commit d48dd90

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@
6161

6262
Examples
6363
--------
64-
> var myPDF = {{alias}}.factory( 5.0 );
65-
> var y = myPDF( 0.5 )
64+
> var myCDF = {{alias}}.factory( 5.0 );
65+
> var y = myCDF( 0.5 )
6666
~0.699
67-
> y = myPDF( 1.0 )
67+
> y = myCDF( 1.0 )
6868
1.0
6969

7070
See Also

lib/node_modules/@stdlib/stats/base/dists/bradford/cdf/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ interface CDF {
108108
* var y = cdf( 0.5, 5.0 );
109109
* // returns ~0.699
110110
*
111-
* var mypdf = cdf.factory( 5.0 );
112-
* y = mypdf( 0.5 );
111+
* var mycdf = cdf.factory( 5.0 );
112+
* y = mycdf( 0.5 );
113113
* // returns ~0.699
114114
*
115-
* y = mypdf( 1.0 );
115+
* y = mycdf( 1.0 );
116116
* // returns 1.0
117117
*/
118118
declare var cdf: CDF;

0 commit comments

Comments
 (0)