diff --git a/README.md b/README.md
index d741cac055dfc751d4dce392e8ffd331a0575372..d6c60a8bb391ca558b00ccb5dcdbcd45a65665da 100644
--- a/README.md
+++ b/README.md
@@ -63,11 +63,11 @@ The mov instructions is the simplest of all, and as the name says, it moves the
 
 #### C - ASM translation
 
-| **C Code** 	    | **ASM Code**   	|
-|------------	    |----------------	|
-| `a = a & 0xFF;` | `AND eax, 0xFF` |
-| `b = a | b;`   	| `OR ebx, eax`   |
-| `c = a ^ c;`    | `XOR ecx, eax`  |
+| **C Code** 	    | **ASM Code**    |
+|------------	    |---------------- |
+| `a = a & 0xFF;`   | `AND eax, 0xFF` |
+| `b = a | b;`      | `OR ebx, eax`   |
+| `c = a ^ c;`      | `XOR ecx, eax`  |
 
 ### Arithmetic operations