diff --git a/README.md b/README.md index 1ec3ffb..0056fb1 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ public class LinkedListNode : Obj var current = this; while (current.Next != null) { current = current.Next; - return Obj.Create(); + return Obj.Create(current); } // Value is the base type of anything in Q&.