aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaana Burcu Dogan <jbd@google.com>2016-10-31 10:23:50 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-08 18:36:52 +0000
commit7465bfb1ea1a7ddfec9b267587ee9e6200514f3f (patch)
tree00fb354bf44c2757585fa4f7223623baefc40656
parent59d5835f144fae0c9e8726ffc7e42663eadef229 (diff)
downloadgo-7465bfb1ea1a7ddfec9b267587ee9e6200514f3f.tar.gz
go-7465bfb1ea1a7ddfec9b267587ee9e6200514f3f.zip
path: document that filepath is recommended to manipulate filename paths
Fixes #17690. Change-Id: Ifd300980aa4c11498ed7c083d08bcdd23f5b307a Reviewed-on: https://go-review.googlesource.com/32423 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/path/path.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/path/path.go b/src/path/path.go
index c1d4d8aced..76c7814c59 100644
--- a/src/path/path.go
+++ b/src/path/path.go
@@ -4,6 +4,8 @@
// Package path implements utility routines for manipulating slash-separated
// paths.
+//
+// To manipulate operating system paths, use the path/filepath package.
package path
import (