Skip to content

Commit

Permalink
fix custom domains docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stevezau committed Nov 11, 2018
1 parent e413fe4 commit 3c55b54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/management/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1945,7 +1945,7 @@ utils.wrapPropertyMethod(ManagementClient, 'deleteRulesConfig', 'rulesConfigs.de
* @memberOf module:management.CustomDomainsManager.prototype
*
* @example
* management.customDomains.createCustomDomain(data, function (err) {
* management.createCustomDomain(data, function (err) {
* if (err) {
* // Handle error.
* }
Expand All @@ -1967,7 +1967,7 @@ utils.wrapPropertyMethod(ManagementClient, 'createCustomDomain', 'customDomains.
* @memberOf module:management.CustomDomainsManager.prototype
*
* @example
* management.customDomains.getCustomDomains(function (err, customDomains) {
* management.getCustomDomains(function (err, customDomains) {
* console.log(customDomains.length);
* });
*
Expand All @@ -1982,7 +1982,7 @@ utils.wrapPropertyMethod(ManagementClient, 'getCustomDomains', 'customDomains.ge
* @memberOf module:management.CustomDomainsManager.prototype
*
* @example
* management.customDomains.getCustomDomain({ id: CUSTOM_DOMAIN_ID }, function (err, customDomain) {
* management.getCustomDomain({ id: CUSTOM_DOMAIN_ID }, function (err, customDomain) {
* if (err) {
* // Handle error.
* }
Expand All @@ -2005,7 +2005,7 @@ utils.wrapPropertyMethod(ManagementClient, 'getCustomDomain', 'customDomains.get
* @memberOf module:management.CustomDomainsManager.prototype
*
* @example
* management.customDomains.verifyCustomDomain({ id: CUSTOM_DOMAIN_ID }, function (err, customDomain) {
* management.verifyCustomDomain({ id: CUSTOM_DOMAIN_ID }, function (err, customDomain) {
* if (err) {
* // Handle error.
* }
Expand Down

0 comments on commit 3c55b54

Please sign in to comment.