aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB.G.Adrian <aditza8@gmail.com>2018-07-11 15:29:55 +0300
committerAlberto Donizetti <alb.donizetti@gmail.com>2018-07-12 07:46:39 +0000
commitc07e9bc1ad7c13674e98a575297716ffdd07c414 (patch)
treef2e7c893ca0d268f86b2f7b1c778cbb1e2037a45
parent8ddcbfcc471b555edc62398e02b78add78044679 (diff)
downloadgolang-id-tour-c07e9bc1ad7c13674e98a575297716ffdd07c414.tar.xz
content: change expression "under the covers" to "hood"
Fixes golang/tour#445 Change-Id: I69702bc5b3882188e8867e8112ec8e689e1ffb03 Reviewed-on: https://go-review.googlesource.com/123255 Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com>
-rw-r--r--content/methods.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/methods.article b/content/methods.article
index 83c9d7a..ab1d40d 100644
--- a/content/methods.article
+++ b/content/methods.article
@@ -164,7 +164,7 @@ implementation, which could then appear in any package without prearrangement.
* Interface values
-Under the covers, interface values can be thought of as a tuple of a value and a
+Under the hood, interface values can be thought of as a tuple of a value and a
concrete type:
(value, type)