diff --git a/README.md b/README.md
index 289c575..8ed41a1 100644
--- a/README.md
+++ b/README.md
@@ -74,9 +74,9 @@ fadeToColor | Android picker is fading towords this background color. {color, 'n
maximumDate | Maximum selectable date. |
minimumDate | Minimum selectable date |
minuteInterval | The interval at which minutes can be selected. |
|
-mode | The date picker mode. {'datetime', 'date', 'time'} | 

|

|
+mode | The date picker mode. {'datetime', 'date', 'time'} | 

|

|
locale | The locale for the date picker. Changes language, date order and am/pm preferences. Value needs to be a Locale ID.|
|
-textColor | Changes the text color. |
|
+textColor | Changes the text color. |
|
timeZoneOffsetInMinutes | Timezone offset in minutes (default: device's timezone)
@@ -97,7 +97,7 @@ timeZoneOffsetInMinutes | Timezone offset in minutes (default: device's timezone
- [x] Colored text support.
## Why another React Native date picker?
-One of the strongest reason to use react native is its cross platform compatibility. Most of the official components are working seemlessly on both platforms but there are some with single platform support only. The react native date picker is one example where both DatePickerIOS and DatePickerAndroid are present. The reason for this is that the default date picker is implemented in seperate ways, iOS normally have an integrated view picker wheel where android has different pickers in a dialog format.
+One of the strongest reason to use react native is its cross platform compatibility. Most of the official components are working seemlessly on both platforms but there are some with single platform support only. The react native datepicker is one example where both DatePickerIOS and DatePickerAndroid are present. The reason for this is that the default date picker is implemented in seperate ways, iOS normally have an integrated view picker wheel where android has different pickers in a dialog format.
If you want to use these pickers you can combile the official ones or a third party module that already done that for you. If you on the other hand want have a more unified design between your android and ios app, this module is for you. The datetime mode can be particular helpful to avoid 2 separate picker dialogs on android.