aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Maude <git@stevenmaude.co.uk>2020-09-16 14:31:44 +0000
committerBryan C. Mills <bcmills@google.com>2020-09-16 14:35:22 +0000
commitac9f4b724eed5a3464745aedc1181a6af9f40e39 (patch)
tree1863102d92ca571aad6516cd7581b3562105ff4a
parent218d57ff382d0ceed307785cc13b9e2f1702dbac (diff)
content: fix typo in strings.articleHEADmaster
Fix misspelling of "techniques" in "Strings, bytes, runes and characters in Go" article. Change-Id: Idcd0ce68ec3f2a7605db3f4d756d5b03ae7f190c GitHub-Last-Rev: a30ee08eccc038b41eed9cc4a961eca38d1421cf GitHub-Pull-Request: golang/blog#44 Reviewed-on: https://go-review.googlesource.com/c/blog/+/255179 Reviewed-by: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Go Bot <gobot@golang.org>
-rw-r--r--content/strings.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/strings.article b/content/strings.article
index 81de1a5..4fb6f20 100644
--- a/content/strings.article
+++ b/content/strings.article
@@ -130,7 +130,7 @@ With that format, the Unicode value of the Swedish symbol shows up as a
"\xbd\xb2=\xbc \u2318"
-These printing techiques are good to know when debugging
+These printing techniques are good to know when debugging
the contents of strings, and will be handy in the discussion that follows.
It's worth pointing out as well that all these methods behave exactly the
same for byte slices as they do for strings.