From 19ededae2038c3cab938a2ca8495605f78670226 Mon Sep 17 00:00:00 2001
From: Orestis <orestis.malaspinas@pm.me>
Date: Tue, 23 Mar 2021 22:35:01 +0100
Subject: [PATCH] typo

---
 binary_search_tree.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/binary_search_tree.md b/binary_search_tree.md
index 4590a7c..c11288a 100644
--- a/binary_search_tree.md
+++ b/binary_search_tree.md
@@ -64,7 +64,7 @@ fonctions **uniquement de façon récursive**.
 // Fonctions de création, destruction et affichage
 node_t *bst_create(); // création d'un arbre vide (retourne NULL)
 void bst_destroy(node_t *tree); // détruit l'arbre et vide la mémoire
-void bst_print(node_t *tree); // adffiche l'arbre (voir plus bas)
+void bst_print(node_t *tree); // affiche l'arbre (voir plus bas)
 
 // vérifie si l'arbre est vide
 bool bst_is_empty(node_t *tree);
-- 
GitLab