From beefa9fe4e827db8c7145a742b0896bf6bfc9c9a Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 4 May 2020 19:00:44 +0100 Subject: [PATCH] Updated SliceTricks (markdown) --- SliceTricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SliceTricks.md b/SliceTricks.md index ca01ae1d..6c9cad00 100644 --- a/SliceTricks.md +++ b/SliceTricks.md @@ -212,7 +212,7 @@ result := in[:j+1] fmt.Println(result) // [1 2 3 4] ``` -### Move to front or append if not present, in place +### Move to front, or append if not present, in place ```go // moveToFront moves needle to the front of haystack, in place if possible.