From 7e2a01253c9e3491f2949b0bf465ae12ced37632 Mon Sep 17 00:00:00 2001 From: moul <94029+moul@users.noreply.github.com> Date: Wed, 11 Dec 2024 21:33:37 +0100 Subject: [PATCH] chore: fixup Signed-off-by: moul <94029+moul@users.noreply.github.com> --- examples/gno.land/p/demo/avl/list/list.gno | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gno.land/p/demo/avl/list/list.gno b/examples/gno.land/p/demo/avl/list/list.gno index b0c1fd1012d..d4d2e1fce6e 100644 --- a/examples/gno.land/p/demo/avl/list/list.gno +++ b/examples/gno.land/p/demo/avl/list/list.gno @@ -256,7 +256,7 @@ func (l *List) ForEach(fn func(index int, value interface{}) bool) { } } -// Clone creates a deep copy of the list. +// Clone creates a shallow copy of the list. // // Example: //