diff --git a/subjects/listat.en.md b/subjects/listat.en.md index b6197ed6..a3ecd889 100644 --- a/subjects/listat.en.md +++ b/subjects/listat.en.md @@ -2,9 +2,9 @@ ### Instructions -Write a function `ListAt` that takes a pointer to the list `l` and an `int pos` as parameters. This function should print the `NodeL` in the position `pos` of the linked list `l`. +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`. -- In case of error the fonction should print `nil`. +- In case of error the function should return `nil`. ### Expected function and structure