Skip to content

Commit ca381ad

Browse files
committed
Fix typos
1 parent fa069d9 commit ca381ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/clients/core/macros.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Macros extends Client {
2020
* const macros = await client.macros.list();
2121
*/
2222
async list() {
23-
return this.gettAll(['macros', 'active']);
23+
return this.getAll(['macros', 'active']);
2424
}
2525

2626
/**
@@ -71,7 +71,7 @@ class Macros extends Client {
7171
* const macros = await client.macros.listByParams({ active: true });
7272
*/
7373
async listByParams(parameters) {
74-
return this.gettAll(['macros', parameters]);
74+
return this.getAll(['macros', parameters]);
7575
}
7676

7777
/**
@@ -130,7 +130,7 @@ class Macros extends Client {
130130
* const macroCategories = await client.macros.categories();
131131
*/
132132
async categories() {
133-
return this.gettAll(['macros', 'categories']);
133+
return this.getAll(['macros', 'categories']);
134134
}
135135

136136
/**

0 commit comments

Comments
 (0)