diff --git a/README.md b/README.md
index ac951c1..1f7757f 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ This library is available in [Maven Central](https://mvnrepository.com/artifact/
io.github.millij
poi-object-mapper
- 3.0.0
+ 3.1.0
```
@@ -76,12 +76,25 @@ Reading spreadsheet rows as objects ..
```java
...
- final File xlsxFile = new File("");
+ final File xlsFile = new File("");
final XlsReader reader = new XlsReader();
- final List employees = reader.read(Employee.class, xlsxFile);
+ final List employees = reader.read(Employee.class, xlsFile);
+ ...
+```
+
+##### Reading Rows as Map (when there is no mapping bean)
+
+Reading spreadsheet rows as `Map` Objects ..
+
+```java
+ ...
+ final File xlsxFile = new File("");
+ final XlsxReader reader = new XlsxReader(); // OR XlsReader as needed
+ final List