Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dugjason committed Oct 13, 2024
1 parent fa069d9 commit ca381ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/clients/core/macros.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Macros extends Client {
* const macros = await client.macros.list();
*/
async list() {
return this.gettAll(['macros', 'active']);
return this.getAll(['macros', 'active']);
}

/**
Expand Down Expand Up @@ -71,7 +71,7 @@ class Macros extends Client {
* const macros = await client.macros.listByParams({ active: true });
*/
async listByParams(parameters) {
return this.gettAll(['macros', parameters]);
return this.getAll(['macros', parameters]);
}

/**
Expand Down Expand Up @@ -130,7 +130,7 @@ class Macros extends Client {
* const macroCategories = await client.macros.categories();
*/
async categories() {
return this.gettAll(['macros', 'categories']);
return this.getAll(['macros', 'categories']);
}

/**
Expand Down

0 comments on commit ca381ad

Please sign in to comment.