From 6b94de1f85a8235b895f977e4190883863b137cb Mon Sep 17 00:00:00 2001 From: ochom Date: Wed, 21 Feb 2024 11:59:18 +0300 Subject: [PATCH] update implement an array for each --- arrays/arrays.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrays/arrays.go b/arrays/arrays.go index 2ff61ed..7a07022 100644 --- a/arrays/arrays.go +++ b/arrays/arrays.go @@ -1,6 +1,6 @@ package arrays -// NOTE: This library is not exactly what a Gopher would expect from a Go library. +// !NOTE: This library is not exactly what a Gopher would expect from a Go library. // It is a simple implementation of some of the most common array methods in JavaScript. // It is intended to be used as a reference for those who are familiar with JavaScript and are learning Go.