docs(): fix typo (#1731)

Instead of intelSec it should be intelSecurity base on the name of the instance.
This commit is contained in:
jeffrey n. carre 2017-06-29 02:42:31 -04:00 committed by Ibby Hadeed
parent 3c125bbc84
commit 27fdac91fd

View File

@ -53,7 +53,7 @@ export interface IntelSecurityDataOptions {
* .catch((error: any) => console.log(error));
*
* this.intelSecurity.storage.read({id: storageID })
* .then((instanceID: number) => this.intelSec.data.getData(instanceID))
* .then((instanceID: number) => this.intelSecurity.data.getData(instanceID))
* .then((data: string) => console.log(data)) // Resolves to 'Sample Data'
* .catch((error: any) => console.log(error));
*