From 97e8470b0d9c2d6e87fb951236769eb4274e2ab9 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sat, 2 Jan 2021 21:53:21 +0100 Subject: [PATCH] Change requested by @philipp ref #70 --- src/models/entities/IAddressUser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/entities/IAddressUser.ts b/src/models/entities/IAddressUser.ts index 56ee840..3a7762a 100644 --- a/src/models/entities/IAddressUser.ts +++ b/src/models/entities/IAddressUser.ts @@ -2,7 +2,7 @@ import { Entity, ManyToOne, PrimaryColumn } from 'typeorm'; import { Address } from './Address'; /** - * The interface(-ish) all entities using addresses have to implement. + * The interface(tm) all entities using addresses have to implement. * This is a abstract class, because apparently typeorm can't really work with interfaces :/ */ @Entity()