aboutsummaryrefslogtreecommitdiff
path: root/content/package-names.article
diff options
context:
space:
mode:
authorSameer Ajmani <sameer@golang.org>2015-02-23 10:13:15 -0500
committerSameer Ajmani <sameer@golang.org>2015-02-23 17:20:41 +0000
commit22be5f9c794eb7751941854ac52be7045f2f94a5 (patch)
treea0cab0f1903e93564ff4eea9f7cdae3921a779f3 /content/package-names.article
parent28541a3b143f9901735bb82479ae1b132ad5e18a (diff)
blog: edits to package-names post.
I received a question about whether package functions named "New" were required (they're not), so I'm adding examples of functions named "WithX" and "FromY" to show other useful forms. Change-Id: Iff3ddec3dca3344762f09ba52de9cd515a4bc863 Reviewed-on: https://go-review.googlesource.com/5572 Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'content/package-names.article')
-rw-r--r--content/package-names.article6
1 files changed, 4 insertions, 2 deletions
diff --git a/content/package-names.article b/content/package-names.article
index 0f95a5b..4ecc057 100644
--- a/content/package-names.article
+++ b/content/package-names.article
@@ -84,8 +84,10 @@ Client code refers to this type as `http.Server`, so there is no ambiguity.
When a function in package pkg returns a value of type `pkg.Pkg` (or
`*pkg.Pkg`), the function name can often omit the type name without confusion:
- start := time.Now() // start is a time.Time
- t, err := time.Parse(time.Kitchen, "6:06PM") // t is a time.Time
+ start := time.Now() // start is a time.Time
+ t, err := time.Parse(time.Kitchen, "6:06PM") // t is a time.Time
+ ctx = context.WithTimeout(ctx, 10*time.Millisecond) // ctx is a context.Context
+ ip, ok := userip.FromContext(ctx) // ip is a net.IP
A function named `New` in package `pkg` returns a value of type `pkg.Pkg`.
This is a standard entry point for client code using that type: