Update README.md
diff --git a/README.md b/README.md
index c4ff1f7..b127423 100644
--- a/README.md
+++ b/README.md
@@ -23,8 +23,8 @@
 To enable a counter, create either a PMU or Mali counter and then call its start function.
 
 ```
-	Instrument instrument_ = PMUCounter();
-	instrument_.start();
+Instrument instrument_ = PMUCounter();
+instrument_.start();
 ```
 
 #### Reading a Counter:
@@ -32,8 +32,8 @@
 To read a counter, first stop it and then call its measurements function to store results in the MeasurementsMap variable which can then be read from.
 
 ```
-	instrument_.stop();
-	MeasurementsMap measurements = instrument_.measurements();
+instrument_.stop();
+MeasurementsMap measurements = instrument_.measurements();
 ```
 
 
@@ -59,4 +59,4 @@
  - L2 cache write lookups
  - L2 cache external writes
 
-For more information regarding these counters, see [Mali Performance Counters](https://community.arm.com/graphics/b/blog/posts/mali-bifrost-family-performance-counters).
\ No newline at end of file
+For more information regarding these counters, see [Mali Performance Counters](https://community.arm.com/graphics/b/blog/posts/mali-bifrost-family-performance-counters).