docs(); fix typo (#1257)

In the documentation, when calling `show()`, you logged 'any' in the console, instead of logging 'result'
This commit is contained in:
eddyTheDove 2017-03-26 19:02:12 +11:00 committed by Ibby Hadeed
parent fa803f2258
commit 3511f24a26

View File

@ -39,7 +39,7 @@ export interface FingerprintOptions {
* clientSecret: "password", //Only necessary for Android
* disableBackup:true //Only for Android(optional)
* })
* .then((result: any) => console.log(any))
* .then((result: any) => console.log(result))
* .catch((error: any) => console.log(error));
*
* ```