Update documentation for expensiveComputation() (#4269)

Added comment for clarity
This commit is contained in:
tsasser05 2021-11-27 15:21:17 -05:00 committed by GitHub
parent 20ed619532
commit 5ecf1a3bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,6 +190,7 @@ func learnMemory() (p, q *int) {
return &s[3], &r // & takes the address of an object.
}
// Use the aliased math library (see imports, above)
func expensiveComputation() float64 {
return m.Exp(10)
}