From 3e50722419f99109d664b0caa6a13a441af3ba13 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 15 Jul 2022 14:27:22 +0100 Subject: [PATCH] docs: Be more specific with the instructions --- subjects/listfind/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/listfind/README.md b/subjects/listfind/README.md index 7c01781f..2eb39753 100644 --- a/subjects/listfind/README.md +++ b/subjects/listfind/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `ListFind` that returns the address of the first node in the list `l` that is determined to be equal to `ref` by the function `CompStr`. +Write a function `ListFind` that returns the address of the data interface of the first node in the list `l` that is determined to be equal to `ref` by the function `CompStr`. - For this exercise the function `CompStr` must be used.