diff --git a/docs/asyncstorage.html b/docs/asyncstorage.html
index 6129b3cd8db..3da158c88af 100644
--- a/docs/asyncstorage.html
+++ b/docs/asyncstorage.html
@@ -8,8 +8,7 @@ there is any. Returns a Promise object.
Returns a Promise object.
Merges existing value with input value, assuming they are stringified json.
Returns a Promise object. Not supported by all native implementations.
Erases all AsyncStorage for all clients, libraries, etc. You probably
don't want to call this - use removeItem or multiRemove to clear only your
-own keys instead. Returns a Promise object.
Erases all keys with a particular prefix. Useful if all your keys have a -specific prefix.
Gets all keys known to the app, for all callers, libraries, etc. Returns a Promise object.
multiGet invokes callback with an array of key-value pair arrays that
+own keys instead. Returns a Promise object.
Gets all keys known to the app, for all callers, libraries, etc. Returns a Promise object.
multiGet invokes callback with an array of key-value pair arrays that
matches the input format of multiSet. Returns a Promise object.
multiGet(['k1', 'k2'], cb) -> cb([['k1', 'val1'], ['k2', 'val2']])
multiSet and multiMerge take arrays of key-value array pairs that match
the output of multiGet, e.g. Returns a Promise object.
multiSet([['k1', 'val1'], ['k2', 'val2']], cb);
Delete all the keys in the keys array. Returns a Promise object.
Merges existing values with input values, assuming they are stringified
json. Returns a Promise object.
Not supported by all native implementations.