diff --git a/README.md b/README.md
index 3b4d081..894d909 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# ARM_Simimulator
Course Project for Computer Organisation (CSE112)
- Instructor : Dr. Rahul Nagpal
+ Instructor: Dr. Rahul Nagpal
The objective of this project is to design and build an ARM Simulator. The project should be written in Java, which would read the instruction from instruction memory, decode the instruction, read the register, execute the operation, and write back to the register file.
The instruction set supported is same as given in the lecture notes. (MOV, ADD, SUB, LDR, STR, etc). Basic SWI instructions should be implemented: Read, Print, Exit etc (Read should be console input in Java). The execution of instruction continues till it reaches instruction “swi 0x11”. In other words as soon as instruction reads “0xEF000011”, the simulator stops execution.