Skip to content

Commit 32e9ee4

Browse files
authored
correct types in documentation of student-t-dist (#113)
1 parent f0c0075 commit 32e9ee4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

math-doc/math/scribblings/math-distributions.scrbl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -682,10 +682,10 @@ which is the square of standard deviation. Construct normal distributions from v
682682
@margin-note{Wikipedia:
683683
@hyperlink["https://en.wikipedia.org/wiki/Student's_t-distribution"]{Student-t Distribution}.}
684684
@deftogether[(@defidform[Student-t-Dist]
685-
@defproc[(student-t-dist [freedom Positive-Real] [mean Real 0] [scale Real 1]) Normal-Dist]
686-
@defproc[(student-t-dist-freedom [d Normal-Dist]) Positive-Flonum]
687-
@defproc[(student-t-dist-mean [d Normal-Dist]) Flonum]
688-
@defproc[(student-t-dist-scale [d Normal-Dist]) Flonum])]{
685+
@defproc[(student-t-dist [freedom Positive-Real] [mean Real 0] [scale Real 1]) Student-t-Dist]
686+
@defproc[(student-t-dist-freedom [d Student-t-Dist]) Positive-Flonum]
687+
@defproc[(student-t-dist-mean [d Student-t-Dist]) Real]
688+
@defproc[(student-t-dist-scale [d Student-t-Dist]) Real])]{
689689
Represents the student-t distribution family parameterized by degree of freedom, mean (also called ``location'') and scale.
690690

691691
@examples[#:eval untyped-eval

0 commit comments

Comments
 (0)