diff --git a/source/introduction/about.html.md b/source/introduction/about.html.md
index fdd214402a0207a8aac3090b44e357cb9bd0093c..a472680ca8a0e91d54f608ea382048b557878bed 100644
--- a/source/introduction/about.html.md
+++ b/source/introduction/about.html.md
@@ -26,7 +26,8 @@ And refactor the sequential loop to the following form:
 ```java
 
 Kernel kernel = new Kernel() {
-    @Override public void run() {
+    @Override
+    public void run() {
         int i = getGlobalId();
         result[i] = intA[i] + inB[i];
     }