diff --git a/src/app/mock-api/apps/bank/deposit/api.ts b/src/app/mock-api/apps/bank/deposit/api.ts
index 823ca37..ce81376 100644
--- a/src/app/mock-api/apps/bank/deposit/api.ts
+++ b/src/app/mock-api/apps/bank/deposit/api.ts
@@ -79,7 +79,7 @@ export class BankDepositMockApi {
// If the requested page number is bigger than
// the last possible page number, return null for
- // users but also send the last possible page so
+ // deposits but also send the last possible page so
// the app can navigate to there
if (page > lastPage) {
deposits = null;
@@ -120,7 +120,7 @@ export class BankDepositMockApi {
// Get the id from the params
const id = request.params.get('id');
- // Clone the users
+ // Clone the deposits
const deposits = cloneDeep(this._deposits);
// Find the deposit
diff --git a/src/app/modules/admin/bank/deposit/components/list.component.html b/src/app/modules/admin/bank/deposit/components/list.component.html
index ae6e1a4..70379be 100644
--- a/src/app/modules/admin/bank/deposit/components/list.component.html
+++ b/src/app/modules/admin/bank/deposit/components/list.component.html
@@ -23,7 +23,7 @@