diff --git a/README.md b/README.md
index e9ae4c9..0ae322a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# PhoneGap Toast plugin for Android and iOS
+# PhoneGap Toast plugin
-by [Eddy Verbruggen](@eddyverbruggen)
+for Android and iOS, by [Eddy Verbruggen](@eddyverbruggen)
## 0. Index
@@ -26,7 +26,7 @@ It's great for showing a non intrusive native notification which is guaranteed a
## 2. Screenshots
-iOS 7
+iOS

@@ -97,30 +97,30 @@ Toast.js is brought in automatically. There is no need to change or add anything
## 4. Usage
You have two choices to make when showing a Toast: where to show it and for how long.
-* toast.show(message, duration, position)
-- duration: short / long
-- position: top / center / bottom
+* show(message, duration, position)
+** duration: short / long
+** position: top / center / bottom
You can also use any of these convenience methods:
-* toast.showShortTop(message)
-* toast.showShortCenter(message)
-* toast.showShortBottom(message)
-* toast.showLongTop(message)
-* toast.showLongCenter(message)
-* toast.showLongBottom(message)
+* showShortTop(message)
+* showShortCenter(message)
+* showShortBottom(message)
+* showLongTop(message)
+* showLongCenter(message)
+* showLongBottom(message)
You can copy-paste these lines of code for a quick test:
```html
-
-
-
+
+
+
```
## 5. CREDITS ##
This plugin was enhanced for Plugman / PhoneGap Build by [Eddy Verbruggen](http://www.x-services.nl).
The Android code was entirely created by me.
-I only has to slightly adjust [this excellent Toast project] (https://github.com/scalessec/Toast).
+I only has to slightly adjust this excellent [Toast for iOS project by Charles Scalesse] (https://github.com/scalessec/Toast).
## 6. License