summaryrefslogtreecommitdiff
path: root/lib/containers/linkedlist.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/containers/linkedlist.go')
-rw-r--r--lib/containers/linkedlist.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/containers/linkedlist.go b/lib/containers/linkedlist.go
index 7d40479..07b4760 100644
--- a/lib/containers/linkedlist.go
+++ b/lib/containers/linkedlist.go
@@ -8,7 +8,7 @@ import (
"git.lukeshu.com/go/typedsync"
)
-// LinkedListEntry[T] is an entry in a LinkedList[T].
+// LinkedListEntry [T] is an entry in a LinkedList [T].
type LinkedListEntry[T any] struct {
older, newer *LinkedListEntry[T]
Value T