types/list/linked-list-type.go: fixed type name

This commit is contained in:
2026-08-02 16:52:53 +02:00
parent 02a02b4f20
commit b080eaf49f
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"git.portale-stac.it/go-pkg/expr/kern"
)
const LinkedListTypeName = "lisked-list"
const LinkedListTypeName = "linked-list"
func IsLinkedList(v any) (ok bool) {
_, ok = v.(*LinkedList)