Commit 8107cad4 authored by Robert Griesemer's avatar Robert Griesemer

math, path: minor comment fixes

R=r
CC=golang-dev
https://golang.org/cl/444043
parent 698bc461
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
package math package math
// Ldexp is the inverse of Frexp. // Ldexp is the inverse of Frexp.
// It returns frac × 2<sup>exp</sup>. // It returns frac × 2^exp.
func Ldexp(frac float64, exp int) float64 { func Ldexp(frac float64, exp int) float64 {
// TODO(rsc): Remove manual inlining of IsNaN, IsInf // TODO(rsc): Remove manual inlining of IsNaN, IsInf
// when compiler does it for us // when compiler does it for us
......
...@@ -115,7 +115,7 @@ func Split(path string) (dir, file string) { ...@@ -115,7 +115,7 @@ func Split(path string) (dir, file string) {
return "", path return "", path
} }
// Join joins any number of path elemets into a single path, adding a // Join joins any number of path elements into a single path, adding a
// separating slash if necessary. All empty strings are ignored. // separating slash if necessary. All empty strings are ignored.
func Join(elem ...string) string { func Join(elem ...string) string {
for i, e := range elem { for i, e := range elem {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment