hoodiehq / hoodie-account-client

:dog: Account client API for the browser
https://hoodiehq.github.io/hoodie-account-client
Apache License 2.0
11 stars 24 forks source link

README: example for account.profile.fetch() has a bug #79

Closed gr2m closed 8 years ago

gr2m commented 8 years ago

follow up for https://github.com/hoodiehq/hoodie-client-account/pull/78#discussion_r54120950

account.fetch('fullname').then(function (createdAt) {
  alert('Hey there ' + fullname)
})

should be

account.fetch('fullname').then(function (fullname) {
  alert('Hey there ' + fullname)
})

Please help free to turn this into a starter issue <3 Edit my issue description directly, or create a follow up issue so we can close this one :)

HipsterBrown commented 8 years ago

Closed by https://github.com/hoodiehq/hoodie-client-account/pull/81