From dd231d653e73590f05458f95589c1e57585e0af0 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 21 Jun 2019 16:03:38 +0100 Subject: [PATCH] change type Node to NodeL --- subjects/listpushback.en.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/listpushback.en.md b/subjects/listpushback.en.md index 8bc83d9d..45fa4d64 100644 --- a/subjects/listpushback.en.md +++ b/subjects/listpushback.en.md @@ -2,19 +2,19 @@ ### Instructions -Write a function `ListPushBack` that inserts a new element `Node` at the end of the list, using the structure `List` +Write a function `ListPushBack` that inserts a new element `NodeL` at the end of the list, using the structure `List` ### Expected function and structure ```go -type Node struct { +type NodeL struct { Data interface{} - Next *Node + Next *NodeL } type List struct { - Head *Node - Tail *Node + Head *NodeL + Tail *NodeL } func ListPushBack(l *List, data interface{}) {