1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-07 06:02:27 +08:00

update comment for StackLink

This commit is contained in:
dudaodong
2022-02-04 22:45:01 +08:00
parent cee9bb538f
commit 8d0ff28304

View File

@@ -5,7 +5,7 @@ import (
"fmt"
)
// StackLink is a linear table, implemented with slice
// StackArray implements stack with link list
type StackLink[T any] struct {
top *StackNode[T]
length int