Skip to content

Commit 9966d5e

Browse files
katiehockmanrsc
authored andcommitted
_content: replace usages of "stutter"
Replace the use of "stutter" with a word which more clearly conveys the meaning. Change-Id: I1411e721f033a9600c023691e31e150b94c64b6d Reviewed-on: https://go-review.googlesource.com/c/website/+/322671 Trust: Katie Hockman <[email protected]> Run-TryBot: Katie Hockman <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> Reviewed-by: Russ Cox <[email protected]>
1 parent 6edac51 commit 9966d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_content/doc/effective_go.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ <h3 id="package-names">Package names</h3>
354354
<p>
355355
The importer of a package will use the name to refer to its contents,
356356
so exported names in the package can use that fact
357-
to avoid stutter.
357+
to avoid repetition.
358358
(Don't use the <code>import .</code> notation, which can simplify
359359
tests that must run outside the package they are testing, but should otherwise be avoided.)
360360
For instance, the buffered reader type in the <code>bufio</code> package is called <code>Reader</code>,

_content/doc/go_faq.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h3 id="principles">
208208
complexity. There are no forward declarations and no header files;
209209
everything is declared exactly once. Initialization is expressive,
210210
automatic, and easy to use. Syntax is clean and light on keywords.
211-
Stuttering (<code>foo.Foo* myFoo = new(foo.Foo)</code>) is reduced by
211+
Repetition (<code>foo.Foo* myFoo = new(foo.Foo)</code>) is reduced by
212212
simple type derivation using the <code>:=</code>
213213
declare-and-initialize construct. And perhaps most radically, there
214214
is no type hierarchy: types just <i>are</i>, they don't have to

0 commit comments

Comments
 (0)