From d5b5905bc066ba79df8a403dbe3e42bb075073a3 Mon Sep 17 00:00:00 2001 From: Orestis <orestis.malaspinas@pm.me> Date: Mon, 18 Dec 2023 19:06:42 +0100 Subject: [PATCH] typos --- slides/cours_12.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/slides/cours_12.md b/slides/cours_12.md index 0a864be..47704a4 100644 --- a/slides/cours_12.md +++ b/slides/cours_12.md @@ -62,8 +62,8 @@ typedef struct _queue { // File d'attente: ```C void queue_init(queue *fa); // head = tail = NULL bool queue_is_empty(queue fa); // fa.head == fa.tail == NULL -int queue_tail(queue fa); // return fa.head->data -int queue_head(queue fa); // return fa.tail->data +int queue_tail(queue fa); // return fa.tail->data +int queue_head(queue fa); // return fa.head->data ``` ## Manipulations et destruction @@ -465,8 +465,7 @@ sorted_list sorted_list_push(sorted_list list, int val) { . . . -{width=80%} +{width=80%} . . . @@ -488,8 +487,7 @@ sorted_list sorted_list_push(sorted_list list, int val) { . . . -{width=70%} +{width=70%} . . . -- GitLab