Skip to content

Commit a445c53

Browse files
BUG: Fix docstrings of normal.logcdf and normal.logsf
1 parent 94ac40c commit a445c53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/normal/define_cxxgen_extmods.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@
4444
Func(cxxname='normal_logcdf',
4545
ufuncname='logcdf',
4646
types=['f->f', 'd->d', 'g->g'],
47-
docstring=normal_cdf_docstring),
47+
docstring=normal_logcdf_docstring),
4848
Func(cxxname='normal_sf',
4949
ufuncname='sf',
5050
types=['f->f', 'd->d', 'g->g'],
5151
docstring=normal_sf_docstring),
5252
Func(cxxname='normal_logsf',
5353
ufuncname='logsf',
5454
types=['f->f', 'd->d', 'g->g'],
55-
docstring=normal_sf_docstring),
55+
docstring=normal_logsf_docstring),
5656
]
5757

5858
erfcx_funcs = [

0 commit comments

Comments
 (0)