From 2972b88be381c377e94628f6eea67675e7b4d03e Mon Sep 17 00:00:00 2001 From: davhojt Date: Fri, 3 Jun 2022 08:55:25 +0300 Subject: [PATCH] docs(lunch_queue) improve grammar about Link pointing to None --- subjects/lunch_queue/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/lunch_queue/README.md b/subjects/lunch_queue/README.md index 4c68be46..1d0a7d6f 100644 --- a/subjects/lunch_queue/README.md +++ b/subjects/lunch_queue/README.md @@ -12,7 +12,7 @@ The program requires the following functions. Add them as associated functions t - `rm`: which removes the person who finished ordering their food. The removal should respect the FIFO method (first in first out). It should return the person's details. - `search`: which returns the details for a given person's `name`. -You must also create a type named `Link`. This will be the connection of the structures `Queue` and `Person`. This will be a recursion type and it must point to `None` when the person is the last person in the queue. +You must also create a type named `Link`. This will be the connection of the structures `Queue` and `Person`. This will be a recursion type, and must point to `None` if there is no `Person` to point to. ### Expected Function and Structures