docs(linkedin): fix example (#2588)

* added missing `)` in login code
This commit is contained in:
Shubham Pandey 2018-07-08 22:13:54 +05:30 committed by Daniel Sogl
parent 4f415892b1
commit 006ba4425f

View File

@ -24,7 +24,7 @@ export type LinkedInLoginScopes = 'r_basicprofile' | 'r_emailaddress' | 'rw_comp
* // login
* const scopes = ['r_basicprofile', 'r_emailaddress', 'rw_company_admin', 'w_share'];
* this.linkedin.login(scopes, true)
* .then(() => console.log('Logged in!')
* .then(() => console.log('Logged in!'))
* .catch(e => console.log('Error logging in', e));
*
*