From bbe0038638c3fbb4def31286d548ca57d76a3695 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 15 Jul 2022 14:14:06 +0100 Subject: [PATCH] docs: Correct description --- subjects/listat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/listat/README.md b/subjects/listat/README.md index f3683a9e8..5284c3958 100644 --- a/subjects/listat/README.md +++ b/subjects/listat/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `ListAt` that takes a pointer to the list `l` and an `int pos` as parameters. This function should return the `NodeL` in the position `pos` of the linked list `l`. +Write a function `ListAt` that takes a pointer to the head of the list `l` and an `int pos` as parameters. This function should return the `NodeL` in the position `pos` of the linked list `l`. - In case of error the function should return `nil`.