diff --git a/docs/0.10/asyncstorage.html b/docs/0.10/asyncstorage.html
index 14a9c2a14b5..b698cea244e 100644
--- a/docs/0.10/asyncstorage.html
+++ b/docs/0.10/asyncstorage.html
@@ -272,8 +272,8 @@ AsyncStorage.
Name | Type | Required | Description |
-| keys | Array | Yes | Array of key for the items to get. |
-| callback | (errors, result) => void | No | Function that will be called with a key-value array of the results, plus an array of any key-specific errors found. |
+| keys | Array<string> | Yes | Array of key for the items to get. |
+| callback | (errors, result) => void | No | Function that will be called with a key-value array of the results, plus an array of any key-specific errors found. |
@@ -290,7 +290,7 @@ AsyncStorage.Name | Type | Required | Description |
-| keyValuePairs | Array<Array> | Yes | Array of key-value array for the items to set. |
+| keyValuePairs | Array<Array<string>> | Yes | Array of key-value array for the items to set. |
| callback | (errors) => void | No | Function that will be called with an array of any key-specific errors found. |
@@ -305,8 +305,8 @@ AsyncStorage.Name | Type | Required | Description |
-| keys | Array | Yes | Array of key for the items to delete. |
-| callback | (errors) => void | No | Function that will be called an array of any key-specific errors found. |
+| keys | Array<string> | Yes | Array of key for the items to delete. |
+| callback | (errors) => void | No | Function that will be called an array of any key-specific errors found. |
@@ -321,8 +321,8 @@ AsyncStorage.Name | Type | Required | Description |
-| keyValuePairs | Array<Array> | Yes | Array of key-value array for the items to merge. |
-| callback | (errors) => void | No | Function that will be called with an array of any key-specific errors found. |
+| keyValuePairs | Array<Array<string>> | Yes | Array of key-value array for the items to merge. |
+| callback | (errors) => void | No | Function that will be called with an array of any key-specific errors found. |