fix type in example
Blake Mizerany
10 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
quantile/example_test.go
less
more
54
54
for samples := range ch {
55
55
q.Merge(samples)
56
56
}
57
fmt.Println("perc50:", q.Query(0.90))
57
fmt.Println("perc90:", q.Query(0.90))
58
58
}
59
59
60
60
func Example_window() {