diff --git a/ws1/README.md b/ws1/README.md
index 88b9a6162087819a8a0830c2bb7460882713ee79..cc02d9ce02a75cc6eee847fb3d38e9fb23236a5f 100644
--- a/ws1/README.md
+++ b/ws1/README.md
@@ -75,14 +75,14 @@ nasm -f elf asm_io.asm -o asm_io.o            # Assemble the I/O library
 gcc -m32 -c driver.c -o driver.o              # Compile the C driver
 gcc -m32 driver.o task2.o asm_io.o -o task2   # Link to create the executable
 
-... 
+```
 
 ### Run Programme
 To run the programme, use the command:
 ```bash
 ./task2
 
-...
+```
 
 ## Showing an Example of Task 2 Running