forgot a word

This commit is contained in:
Qrakhen 2026-05-08 06:53:04 +02:00
parent 5df7a32a7f
commit 5ad65da6da
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public class LinkedListNode : Obj
var current = this; var current = this;
while (current.Next != null) { while (current.Next != null) {
current = current.Next; current = current.Next;
return Obj.Create(); return Obj.Create(current);
} }
// Value is the base type of anything in Q&. // Value is the base type of anything in Q&.