From e468ec72dd0c3510218bab4e2ec89c508cd6707d Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 4 Jan 2023 14:32:17 +0100 Subject: [PATCH] chore: rephrase two todo's --- src/Complex/arithmetic.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Complex/arithmetic.ts b/src/Complex/arithmetic.ts index 93d1559..0d403f4 100644 --- a/src/Complex/arithmetic.ts +++ b/src/Complex/arithmetic.ts @@ -82,9 +82,9 @@ export const sqrt = & Dependencies<'zero' | 'complex', T> & Dependencies<'absquare' | 're' | 'divideReal', Complex> & { - addNumber: Signature<'addReal', T>, // TODO: should be possible to use Signature<'add'> here + addNumber: Signature<'addReal', T>, // TODO: should use Signature<'add'> here addReal: Signature<'add', RealType>, - addComplex: Signature<'addReal', Complex> // TODO: should be possible to use Signature<'add'> here + addComplex: Signature<'addReal', Complex> // TODO: should use Signature<'add'> here }): Signature<'sqrt', Complex> => z => {