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: //