docs(camera): fix typo

Fix typing error for line 104 & 107
- change constant to const
- change enodingType to encodingType
This commit is contained in:
Ferdy Fauzi 2017-03-24 02:16:12 +08:00 committed by Ibby Hadeed
parent 047c236191
commit 5d775978c6

View File

@ -101,10 +101,10 @@ export interface CameraPopoverOptions {
* ... * ...
* *
* *
* constant options: CameraOptions = { * const options: CameraOptions = {
* quality: 100, * quality: 100,
* destinationType: this.camera.DestinationType.DATA_URL, * destinationType: this.camera.DestinationType.DATA_URL,
* enodingType: this.camera.EncodingType.JPEG, * encodingType: this.camera.EncodingType.JPEG,
* mediaType: this.camera.MediaType.PICTURE * mediaType: this.camera.MediaType.PICTURE
* } * }
* *