1
0
mirror of https://github.com/golang/go synced 2024-11-12 01:10:21 -07:00

effective_go.html: be more accepting in the guidelines for interface names

Fixes #5421.

R=golang-dev, bradfitz, adg
CC=golang-dev
https://golang.org/cl/9274043
This commit is contained in:
Rob Pike 2013-05-07 11:41:36 -07:00
parent a155a5a68f
commit 2f326da27e

View File

@ -403,8 +403,10 @@ if owner != user {
<p>
By convention, one-method interfaces are named by
the method name plus the -er suffix: <code>Reader</code>,
<code>Writer</code>, <code>Formatter</code> etc.
the method name plus an -er suffix or similar modification
to construct an agent noun: <code>Reader</code>,
<code>Writer</code>, <code>Formatter</code>,
<code>CloseNotifier</code> etc.
</p>
<p>