Skip to content

Commit 1febdd0

Browse files
authored
fix expint docstring typo
closes #368
1 parent ebe328f commit 1febdd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/expint.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ end
508508
expint(z)
509509
expint(ν, z)
510510
511-
Computes the exponential integral ``\\operatorname{E}_\\nu(z) = \\int_0^\\infty \\frac{e^{-zt}}{t^\\nu} dt``.
511+
Computes the exponential integral ``\\operatorname{E}_\\nu(z) = \\int_1^\\infty \\frac{e^{-zt}}{t^\\nu} dt``.
512512
If ``\\nu`` is not specified, ``\\nu=1`` is used. Arbitrary complex ``\\nu`` and ``z`` are supported.
513513
514514
External links: [DLMF](https://dlmf.nist.gov/8.19), [Wikipedia](https://en.wikipedia.org/wiki/Exponential_integral)
@@ -520,7 +520,7 @@ expint(ν::Number, z::Number, niter::Int=1000) = _expint(ν, z, niter, Val{false
520520
expintx(z)
521521
expintx(ν, z)
522522
523-
Computes the scaled exponential integral ``\\exp(z) \\operatorname{E}_\\nu(z) = e^z \\int_0^\\infty \\frac{e^{-zt}}{t^\\nu} dt``.
523+
Computes the scaled exponential integral ``\\exp(z) \\operatorname{E}_\\nu(z) = e^z \\int_1^\\infty \\frac{e^{-zt}}{t^\\nu} dt``.
524524
If ``\\nu`` is not specified, ``\\nu=1`` is used. Arbitrary complex ``\\nu`` and ``z`` are supported.
525525
526526
See also: [`expint(ν, z)`](@ref SpecialFunctions.expint)

0 commit comments

Comments
 (0)