diff --git a/README.md b/README.md
index 4294bd2..fef0049 100644
--- a/README.md
+++ b/README.md
@@ -303,9 +303,9 @@ change, cropping, etc.) due to implementation specific.
| Name | Type | Default | Description |
| --- | --- | --- | --- |
-| PHOTOLIBRARY | number
| 0
| Choose image from picture library (same as SAVEDPHOTOALBUM for Android) |
+| PHOTOLIBRARY | number
| 0
| Choose image from the device's photo library (same as SAVEDPHOTOALBUM for Android) |
| CAMERA | number
| 1
| Take picture from camera |
-| SAVEDPHOTOALBUM | number
| 2
| Choose image from picture library (same as PHOTOLIBRARY for Android) |
+| SAVEDPHOTOALBUM | number
| 2
| Choose image only from the device's Camera Roll album (same as PHOTOLIBRARY for Android) |
diff --git a/www/CameraConstants.js b/www/CameraConstants.js
index c13dba3..9974c15 100644
--- a/www/CameraConstants.js
+++ b/www/CameraConstants.js
@@ -71,11 +71,11 @@ module.exports = {
* @enum {number}
*/
PictureSourceType:{
- /** Choose image from picture library (same as SAVEDPHOTOALBUM for Android) */
+ /** Choose image from the device's photo library (same as SAVEDPHOTOALBUM for Android) */
PHOTOLIBRARY : 0,
/** Take picture from camera */
CAMERA : 1,
- /** Choose image from picture library (same as PHOTOLIBRARY for Android) */
+ /** Choose image only from the device's Camera Roll album (same as PHOTOLIBRARY for Android) */
SAVEDPHOTOALBUM : 2
},
/**