1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

fix: fix some spell mistake

This commit is contained in:
dudaodong
2022-02-13 19:00:44 +08:00
parent 8a4c8218d2
commit 48c1f8ffad
5 changed files with 18 additions and 18 deletions

View File

@@ -92,8 +92,8 @@ func (q *LinkedQueue[T]) Clear() {
}
// Print all nodes info of queue link
func (s *LinkedQueue[T]) Print() {
current := s.head
func (q *LinkedQueue[T]) Print() {
current := q.head
info := "[ "
for current != nil {
info += fmt.Sprintf("%+v, ", current)