From abfc2c2cadfa82e87a71aa56fbe4cdb2089f56de Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Mon, 22 Aug 2022 05:58:44 -0700 Subject: [PATCH] Remove superfluous punctuation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0402abd..96cf2c0 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ may vary by operating system, CPU architecture, or even Go version. Similarly, examples that iterate over maps may produce items in a different order from what you're getting on your machine. This is because the order of iteration over maps in Go is [not specified and is not guaranteed to be the same from one -iteration to the next.](https://go.dev/ref/spec#RangeClause). +iteration to the next](https://go.dev/ref/spec#RangeClause). It doesn't mean anything is wrong with the example. Typically the code in these examples will be insensitive to the actual order of the output; if the code is