Skip to content

Commit

Permalink
Fixed typos in the hubdb docs (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkmavis1980 authored and smcelhinney committed Oct 30, 2019
1 parent 4c9e92c commit aa264ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hubspot-api",
"version": "2.8.1",
"version": "2.8.2",
"description": "HubSpot API Wrapper",
"keywords": [
"hubspot",
Expand Down
4 changes: 2 additions & 2 deletions src/entities/hubdb.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function hubdbApi(baseOptions) {
* @param {object} opts
* @example
* const hs = new HubSpotClient(props);
* hs.pages.createTable(opts).then(response => console.log(response));
* hs.hubdb.createTable(opts).then(response => console.log(response));
* @property {string} opts.name
* @property {boolean} opts.useForPages
* @property {array} opts.columns
Expand Down Expand Up @@ -195,7 +195,7 @@ export default function hubdbApi(baseOptions) {
* @param {object} options
* @example
* const hs = new HubSpotClient(props);
* hs.pages.getTableRows(tableId, portalId, options).then(response => console.log(response))
* hs.hubdb.getTableRows(tableId, portalId, options).then(response => console.log(response))
* @returns {Promise}
*/
getTableRows,
Expand Down

0 comments on commit aa264ea

Please sign in to comment.