From 2e97385c735bbd1e42dc2192b3ede0cbb212a5c8 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 15 Jul 2022 13:47:52 +0100 Subject: [PATCH] docs: Correct instructions about what to return --- subjects/listlast/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/listlast/README.md b/subjects/listlast/README.md index 3aa9b553..15423c66 100644 --- a/subjects/listlast/README.md +++ b/subjects/listlast/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `ListLast` that returns the last element of a linked list `l`. +Write a function `ListLast` that returns the `Data` interface of the last element of a linked list `l`. ### Expected function and structure