diff --git a/slides/strings.md b/slides/strings.md
index 4d304469375a9c50255408b3d811602fe883766e..ad2351e38c87e6646161c259a463f20d6ac30fa1 100644
--- a/slides/strings.md
+++ b/slides/strings.md
@@ -54,10 +54,14 @@ char name[] = {'P', 'a', 'u', 'l', '\0'};
 # Fonctions
 
 - Il existe une grande quantités de fonction pour la manipulation de chaînes de caractères dans `string.h`.
+- Comment les trouver?
+
+. . .
+
+```bash
+$ man 3 string
+```
 
-    ```bash
-    $ man 3 string
-    ```
 - Fonctions principales:
 
     ```C
@@ -68,5 +72,3 @@ char name[] = {'P', 'a', 'u', 'l', '\0'};
     int strcmp(char *str1, char *str2);
     ```
 
-- Pour avoir la liste complète: `man string`.
-