From 2d057f79adebe55ab6a6d700ac26fda5a6247eaa Mon Sep 17 00:00:00 2001 From: Ankur Oberoi Date: Mon, 26 Jun 2017 16:24:04 -0700 Subject: [PATCH] fix function name typo --- lib/clients/web/facets/users.profile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clients/web/facets/users.profile.js b/lib/clients/web/facets/users.profile.js index 1062aac0f..57f1b0a85 100644 --- a/lib/clients/web/facets/users.profile.js +++ b/lib/clients/web/facets/users.profile.js @@ -37,7 +37,7 @@ UsersProfileFacet.prototype.get = function get(opts, optCb) { * @param {?} value - Value to set a single key to. Usable only if profile is not passed. * @param {function=} optCb Optional callback, if not using promises. */ -UsersProfileFacet.prototype.set = function get(opts, optCb) { +UsersProfileFacet.prototype.set = function set(opts, optCb) { return this.makeAPICall('users.profile.set', null, opts, optCb); };