docs(flashlight): fix typo (#1306)

There is a typo on line 14, changed from

 * constructor(private flashlight: FlashLight) { }

to

 * constructor(private flashlight: Flashlight) { }
This commit is contained in:
Gengjun Wu 2017-03-31 20:02:39 +13:00 committed by Ibby Hadeed
parent 4d2f720b01
commit 0beefb3079

View File

@ -11,7 +11,7 @@ import { Cordova, Plugin } from '@ionic-native/core';
* ```typescript
* import { Flashlight } from '@ionic-native/flashlight';
*
* constructor(private flashlight: FlashLight) { }
* constructor(private flashlight: Flashlight) { }
*
* ...
*