From a36cac71759b2d145b7d61fb1a3be1fabdcc7f43 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 21 Jun 2019 16:02:03 +0100 Subject: [PATCH] change type Node to NodeL --- subjects/listpushfront.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/listpushfront.en.md b/subjects/listpushfront.en.md index 288e51b7..35901b23 100644 --- a/subjects/listpushfront.en.md +++ b/subjects/listpushfront.en.md @@ -7,14 +7,14 @@ Write a function `ListPushBack` that inserts a new element `node` at the beginni ### 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 ListPushFront(l *List, data interface{}) {