From 48f6267fa1a526c39e7afec6b06330846bb0d9fb Mon Sep 17 00:00:00 2001
From: Orestis <orestis.malaspinas@hesge.ch>
Date: Thu, 10 Oct 2019 12:57:54 +0200
Subject: [PATCH] minor modif table wrong...

---
 strings.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/strings.md b/strings.md
index 2ed617a..a24a449 100644
--- a/strings.md
+++ b/strings.md
@@ -21,7 +21,7 @@
 
 # Chaînes de caractères (strings)
 
-- Chaîne de caractère `==` tableaude caractères **terminé par la valeur `'\0'`{.C} ou `0`{.C} **.
+- Chaîne de caractère `==` tableaude caractères **terminé par la valeur** `'\0'`{.C} ou `0`{.C}.
 
 ## Exemple
 
@@ -31,6 +31,6 @@ char str = "HELLO !";
 
 Est représenté par
 
-`H` | `E` | `L` | `L` | `O` | ` ` | `!` | `\0` |
-===============================================
-`72` | `69` | `76` | `76` | `79` | `32` | `33` | `0` |
\ No newline at end of file
+| `H`  | `E`  | `L`  | `L`  | `O`  | ` `  | `!`  | `\0`|
+|------|------|------|------|------|------|------|-----|
+| `72` | `69` | `76` | `76` | `79` | `32` | `33` | `0` |
-- 
GitLab