diff --git a/resources/docs/docs/chapters/tp/arrow-functions.md b/resources/docs/docs/chapters/tp/arrow-functions.md
index 9963092860608a4d65844cc6c3a24d9cdd37601c..0300c59ceeeab370c36931bbe9c8a303a7cde599 100644
--- a/resources/docs/docs/chapters/tp/arrow-functions.md
+++ b/resources/docs/docs/chapters/tp/arrow-functions.md
@@ -74,57 +74,52 @@ Waiting a certain amount of time can be easily done using the [`setTimeout()`](h
 
   > **danger** Regular functions declared with the **`function` keyword have `this` inherited from the caller**, whereas **arrow functions have a `this` inherited from the declaring scope**.
   
-??? note
 
-  Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod
-  nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor
-  massa, nec semper lorem quam in massa.
 
-
-  ??? Show the game.js file 
-  
-      === "game.js - with function"
-      
-          ``` js
-          export class GameComponent {
-            goToScore() {
-              // ...
-              setTimeout(
-                function () {
-                  const scorePage = "#score";
-                  scorePage +
-                    "?name=" +
-                    this._name +
-                    "&size=" +
-                    this._size +
-                    "&time=" +
-                    timeElapsedInSeconds;
-                }.bind(this),
-                750
-              );
-            }
-          }
-          ```
-      
-      === "game.js - with arrow function"
-      
-          ``` js
-          export class GameComponent {
-            goToScore() {
-              // ...
-              setTimeout(() => {
-                const scorePage = "#score";
-                scorePage +
-                  "?name=" +
-                  this._name +
-                  "&size=" +
-                  this._size +
-                  "&time=" +
-                  timeElapsedInSeconds;
-              }, 750);
-            }
-          }
-          ```
+??? Show the game.js file 
+
+    === "game.js - with function"
+
+        ``` js
+         export class GameComponent {
+           goToScore() {
+             // ...
+             setTimeout(
+               function () {
+                 const scorePage = "#score";
+                 scorePage +
+                   "?name=" +
+                   this._name +
+                   "&size=" +
+                   this._size +
+                   "&time=" +
+                   timeElapsedInSeconds;
+               }.bind(this),
+               750
+             );
+           }
+         }
+         ```
+     
+    === "game.js - with arrow function"
+     
+         ``` js
+         export class GameComponent {
+           goToScore() {
+             // ...
+             setTimeout(() => {
+               const scorePage = "#score";
+               scorePage +
+                 "?name=" +
+                 this._name +
+                 "&size=" +
+                 this._size +
+                 "&time=" +
+                 timeElapsedInSeconds;
+             }, 750);
+           }
+         }
+         ```
 
 
 ## Template literals