From 14101bd2d06fc9a90a69498f3d7cbd01407f384a Mon Sep 17 00:00:00 2001 From: Augusto Date: Thu, 27 Jun 2019 11:58:05 +0100 Subject: [PATCH] fix some sintax errors --- subjects/listremoveif.en.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/listremoveif.en.md b/subjects/listremoveif.en.md index 24f692cb..8f744a1f 100644 --- a/subjects/listremoveif.en.md +++ b/subjects/listremoveif.en.md @@ -1,4 +1,4 @@ -## listpushback +## listremoveif ### Instructions @@ -8,8 +8,8 @@ Write a function `ListRemoveIf` that removes all elements that are equal to the ```go type NodeL struct { - data interface{} - next *NodeL + Data interface{} + Next *NodeL } type List struct {