From f53d9f314f00c0a6d9cc52c5edac8f7690921919 Mon Sep 17 00:00:00 2001
From: "yassin.elhakoun" <yassin.el-hakouni@etu.hesge.ch>
Date: Sun, 17 Dec 2023 21:32:02 +0100
Subject: [PATCH] =?UTF-8?q?Update=20structs.md=20(unsinged=20int=20chang?=
 =?UTF-8?q?=C3=A9=20en=20unsigned=20int)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 slides/structs.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/slides/structs.md b/slides/structs.md
index b826922..3827ab6 100644
--- a/slides/structs.md
+++ b/slides/structs.md
@@ -59,7 +59,7 @@ struct fraction frac; // déclaration de frac
 - `typedef`{.C} permet de définir un nouveau type.
 
     ```C
-    typedef unsinged int uint;
+    typedef unsigned int uint;
     typedef struct fraction fraction_t;
     typedef struct fraction {
         int32_t num, denom;
-- 
GitLab