diff --git a/strings.md b/strings.md
index 2ed617ac4215b182e91956fec46afbf9f9932c1d..a24a449750d71b432a8b71c87784b4be6d9b5a3b 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` |