remove unneeded print-comment

The sentence was a bit of a non-sequitur.
This commit is contained in:
Jonathan J Lawlor
2014-11-14 11:31:59 -05:00
parent 2a1b746881
commit 26cf6c0af7

View File

@@ -19,7 +19,6 @@ func ExampleCorrelation() {
fmt.Println("Correlation computes the degree to which two datasets move together")
fmt.Println("about their mean. For example, x and y above move similarly.")
fmt.Println("Package can be used to compute the mean and standard deviation.")
c := Correlation(x, y, w)
fmt.Printf("Correlation is %.5f\n", c)
@@ -27,7 +26,6 @@ func ExampleCorrelation() {
// Output:
// Correlation computes the degree to which two datasets move together
// about their mean. For example, x and y above move similarly.
// Package can be used to compute the mean and standard deviation.
// Correlation is 0.59915
}