Skip to content

Commit

Permalink
Merge pull request #62 from simsurace/ss/typo_logistic
Browse files Browse the repository at this point in the history
Correct typo in `LogisticLink` docstring
  • Loading branch information
theogf authored Jan 28, 2022
2 parents 7efc252 + 891916f commit d254543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/links.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ LogitLink() = Link(logit)
"""
LogisticLink()
`exp(x)/(1+exp(-x))` link. f:ℝ->[0,1]. Its inverse is the [`LogitLink`](@ref).
`1/(1+exp(-x))` link. f:ℝ->[0,1]. Its inverse is the [`LogitLink`](@ref).
"""
LogisticLink() = Link(logistic)

Expand Down

0 comments on commit d254543

Please sign in to comment.