From 56cedf0144e933b34038089e840860dfb6375129 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 12 Jan 2021 18:55:20 +0100 Subject: [PATCH] Fixed typo ref #66 --- src/models/actions/create/CreateDonation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/actions/create/CreateDonation.ts b/src/models/actions/create/CreateDonation.ts index dbed745..3b9218f 100644 --- a/src/models/actions/create/CreateDonation.ts +++ b/src/models/actions/create/CreateDonation.ts @@ -22,7 +22,7 @@ export abstract class CreateDonation { public abstract toEntity(): Promise; /** - * Gets a runner based on the runner id provided via this.runner. + * Gets a donor based on the donor id provided via this.donor. */ public async getDonor(): Promise { const donor = await getConnection().getRepository(Donor).findOne({ id: this.donor });